mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 01:25:16 +00:00
1afd2ab388
- Change delete into archive. - Safely remove widgets. - Make sure archived queries don't get scheduled, or show up in search. - If direct link to query used, show notification. - Tests. - Some more.
13 lines
326 B
Python
13 lines
326 B
Python
from playhouse.migrate import Migrator
|
|
from redash.models import db
|
|
from redash import models
|
|
|
|
if __name__ == '__main__':
|
|
db.connect_db()
|
|
migrator = Migrator(db.database)
|
|
|
|
with db.database.transaction():
|
|
migrator.add_column(models.Query, models.Query.is_archived, 'is_archived')
|
|
|
|
db.close_db(None)
|