redash/migrations/0010_create_alerts.py

9 lines
212 B
Python

from redash.models import db, Alert, AlertSubscription
if __name__ == '__main__':
with db.database.transaction():
Alert.create_table()
AlertSubscription.create_table()
db.close_db(None)