mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 17:38:54 +00:00
13 lines
317 B
Python
13 lines
317 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.User, models.User.password_hash, 'password_hash')
|
||
|
|
||
|
db.close_db(None)
|