mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
13 lines
303 B
Python
13 lines
303 B
Python
|
from playhouse.migrate import PostgresqlMigrator, migrate
|
||
|
|
||
|
from redash.models import db
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
db.connect_db()
|
||
|
migrator = PostgresqlMigrator(db.database)
|
||
|
|
||
|
with db.database.transaction():
|
||
|
migrate(
|
||
|
migrator.drop_not_null('events', 'user_id')
|
||
|
)
|