aboutsummaryrefslogtreecommitdiff
path: root/deploy/kakeibo.transactions@v1.0.0-alpha.1.sql
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/kakeibo.transactions@v1.0.0-alpha.1.sql')
-rw-r--r--deploy/kakeibo.transactions@v1.0.0-alpha.1.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/deploy/kakeibo.transactions@v1.0.0-alpha.1.sql b/deploy/kakeibo.transactions@v1.0.0-alpha.1.sql
new file mode 100644
index 0000000..e37b276
--- /dev/null
+++ b/deploy/kakeibo.transactions@v1.0.0-alpha.1.sql
@@ -0,0 +1,15 @@
+-- Deploy kakeibo:transactions to pg
+-- requires: schema
+
+BEGIN;
+
+CREATE TABLE kakeibo.transactions (
+ id SERIAL PRIMARY KEY,
+ type_code INTEGER,
+ date DATE NOT NULL,
+ note TEXT,
+ created_at TIMESTAMP NOT NULL DEFAULT NOW(),
+ updated_at TIMESTAMP NOT NULL DEFAULT NOW()
+);
+
+COMMIT;