mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
12 lines
307 B
Python
12 lines
307 B
Python
from playhouse.migrate import Migrator
|
|
from redash import db
|
|
from redash import models
|
|
|
|
|
|
if __name__ == '__main__':
|
|
db.connect_db()
|
|
migrator = Migrator(db.database)
|
|
with db.database.transaction():
|
|
migrator.set_nullable(models.Query, models.Query.description, True)
|
|
|
|
db.close_db(None) |