fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
sponsors fix
[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))