diff options
Diffstat (limited to 'manage.py')
-rw-r--r-- | manage.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..c1e2990 --- /dev/null +++ b/manage.py @@ -0,0 +1,21 @@ +from flask.ext.script import Manager +from pastebin import app, db + + +manager = Manager(app) + + +@manager.command +def initdb(): + """Creates all database tables.""" + db.create_all() + + +@manager.command +def dropdb(): + """Drops all database tables.""" + db.drop_all() + + +if __name__ == '__main__': + manager.run() |