mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 09:28:51 +00:00
13 lines
403 B
Python
13 lines
403 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.add_column(models.Dashboard, models.Dashboard.created_at, 'created_at')
|
|
migrator.add_column(models.Widget, models.Widget.created_at, 'created_at')
|
|
|
|
db.close_db(None) |