From 4011d98afee1f2b8a55e329056db18bf568d47db Mon Sep 17 00:00:00 2001 From: nd <git@notandy.de> Date: Fri, 17 Jul 2020 20:14:47 +0200 Subject: [PATCH] add script to create the db schema --- create_db.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 create_db.py diff --git a/create_db.py b/create_db.py new file mode 100755 index 00000000..5f799ab7 --- /dev/null +++ b/create_db.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +from uffd import * + +if __name__ == '__main__': + app = create_app() + init_db(app) -- GitLab