diff options
author | William Carroll <wpcarro@gmail.com> | 2020-07-27T10·16+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-07-27T10·16+0100 |
commit | df13b761ff945db894ade4dba6c68fb6f14c8615 (patch) | |
tree | 26737576453b2b390203fd2c23fccb113ce705d2 /.gitignore | |
parent | 722205b0818a7fb2280941554baaff9400808d65 (diff) |
Define table schema and CSVs to populate the database
TL;DR: - Created src/init.sql, which defines the tables - Created a data/ directory to house .csv data to populate our db - Updated the README with usage instructions
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index c50ada2bf6ea..aa7648cec692 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.db +*.sqlite3 *.db-shm *.db-wal \ No newline at end of file |