askbot.migrations.0001_initial

class askbot.migrations.0001_initial.Migration

Bases: south.v2.SchemaMigration

backwards(orm)
forwards(orm)
askbot.migrations.0001_initial.safe_add_column(table, column, column_data, keep_default=False)

when user calls syncdb with askbot the first time the auth_user table will be created together with the patched columns so, we need to add these columns here in separate transactions and roll back if they fail, if we want we could also record - which columns clash

This Page