mirror of
https://github.com/getredash/redash.git
synced 2025-12-20 09:57:35 -05:00
9 lines
212 B
Python
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)
|