summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-27 01:55:59 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-27 01:59:08 -0400
commitc7815088622d39b8792c072366c72836fce3a932 (patch)
treeeeac30038c3ced09a127415424c36658d51f3de1 /data
parentea9d3dea257b4f1c753b3a6d6c3bb1f20efc0401 (diff)
downloadmetabase-utils-c7815088622d39b8792c072366c72836fce3a932.tar.gz
metabase-utils-c7815088622d39b8792c072366c72836fce3a932.zip
make load script handle the whole database
Diffstat (limited to 'data')
-rw-r--r--data/investments-sheet-schema.sql (renamed from data/schema.sql)2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/schema.sql b/data/investments-sheet-schema.sql
index 2c859ef..d538ec6 100644
--- a/data/schema.sql
+++ b/data/investments-sheet-schema.sql
@@ -1,7 +1,7 @@
DROP TABLE IF EXISTS holdings;
DROP TABLE IF EXISTS categories;
-CREATE TABLE categories (
+CREATE TABLE investment_categories (
name text PRIMARY KEY,
target_allocation integer
);