diff options
author | Tim <contact@bytim.eu> | 2025-05-15 20:40:34 +0200 |
---|---|---|
committer | Tim <contact@bytim.eu> | 2025-05-15 20:40:34 +0200 |
commit | 5f5028307374b471301a38436e2dab2263e005a1 (patch) | |
tree | 6cf6390ae41a14018426eee6504bad9a05e20005 /src | |
parent | 961b54f93581e2756a7ad6be5f990ccb2e8b2aaf (diff) | |
download | chef-5f5028307374b471301a38436e2dab2263e005a1.tar.xz chef-5f5028307374b471301a38436e2dab2263e005a1.zip |
db: remove children column from categories table
Diffstat (limited to 'src')
-rw-r--r-- | src/chef/database/init.clj | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/chef/database/init.clj b/src/chef/database/init.clj index 803e85a..c1128e9 100644 --- a/src/chef/database/init.clj +++ b/src/chef/database/init.clj @@ -7,7 +7,6 @@ :with-columns [[:id :integer :auto-increment :primary-key] [:name :text] [:question :text] - [:children :text] [:parent :text]]})) ;TODO: create root category (jdbc/execute! db (sql/format {:create-table :recipes :with-columns [[:id :integer :auto-increment :primary-key] |