fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3a9aea49eb8d8b9ad54d35e02a74569bd9140994
[wolnelektury.git]
/
apps
/
south
/
tests
/
fakeapp
/
migrations
/
0003_alter_spam.py
1
from south.db import db
2
from django.db import models
3
4
class Migration:
5
6
def forwards(self):
7
8
db.alter_column("southtest_spam", 'name', models.CharField(max_length=255, null=True))
9
10
def backwards(self):
11
12
db.alter_column("southtest_spam", 'name', models.CharField(max_length=255))