Ejemplo n.º 1
0
from redash.models import db, Alert, AlertSubscription

if __name__ == '__main__':
    with db.database.transaction():
        # There was an AWS/GCE image created without this table, to make sure this exists we run this migration.
        if not AlertSubscription.table_exists():
            AlertSubscription.create_table()

    db.close_db(None)
Ejemplo n.º 2
0
from redash import models
from redash.models import db

if __name__ == "__main__":
    db.connect_db()

    if models.Area.table_exists():
        print "Removing areas table..."
        models.Area.drop_table()

    db.close_db(None)