diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-03-07 16:57:14 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-03-07 16:57:14 +0100 |
commit | ee88077eb90bc7f7f800fa04e78bf055fc552cd9 (patch) | |
tree | 58bec8e1eaba1dbaad9fb39b1e34c6a626205f80 /dbinit/makefile | |
parent | a2e34fbf29156717eb4e3c0136921080816238cb (diff) |
format db init sql file and add scaffold for data import code
Diffstat (limited to 'dbinit/makefile')
-rw-r--r-- | dbinit/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dbinit/makefile b/dbinit/makefile new file mode 100644 index 0000000..d6ab70e --- /dev/null +++ b/dbinit/makefile @@ -0,0 +1,5 @@ +dbinit.sql: base.sql data.sql + cat $^ > $@ + +data.sql: + ./import.py > $@ |