1
from django.db import connection
3
from pybb.models import Forum, Topic
5
DESCRIPTION = 'Change of max_length of Profile.language field.'
8
cur = connection.cursor()
10
print 'Altering profile table'
11
cur.execute("ALTER TABLE pybb_profile MODIFY language VARCHAR(10) NOT NULL")