Skip to content

Commit

Permalink
migration 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dayeonkimm committed Jul 30, 2024
1 parent b0ccd28 commit 50a632a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion potato_project/stacks/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class Stack(models.Model):
name = models.CharField(max_length=20, null=True, verbose_name="스택명")
name = models.CharField(max_length=255, null=True, verbose_name="스택명")

def __str__(self):
return self.name

0 comments on commit 50a632a

Please sign in to comment.