fix cmdline flags, fix initdb script

* Actually parse the command line flags.
* Remove CASCADE from drop table.
This commit is contained in:
zegkljan
2022-01-28 00:37:22 +01:00
parent 38318ca654
commit 862350b875
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
DROP TABLE IF EXISTS users CASCADE;
DROP TABLE IF EXISTS users;
CREATE TABLE IF NOT EXISTS users (
id integer PRIMARY KEY AUTOINCREMENT,
name text NOT NULL UNIQUE