1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

magic-removal: Renamed 'class META' to 'class Meta' in models

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1754 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty
2005-12-21 02:42:27 +00:00
parent fe524625ed
commit 29fe9598e0
22 changed files with 48 additions and 48 deletions

View File

@@ -18,7 +18,7 @@ class Thing(models.Model):
having = models.CharField(maxlength=1)
where = models.CharField(maxlength=1)
has_hyphen = models.CharField(maxlength=1, db_column='has-hyphen')
class META:
class Meta:
db_table = 'select'
def __repr__(self):