feat(db): change table

Why not use jsonb?
This commit is contained in:
iridiumR 2023-05-22 01:03:03 +08:00
parent 2fa863436a
commit 4bf9662efc
No known key found for this signature in database
GPG key ID: 49735733EB1A32C8

View file

@ -1,22 +1,18 @@
-- 创建账户表
CREATE TABLE account (
a_id SERIAL PRIMARY KEY,
balance DECIMAL(10, 2),
meta JSONB
);
-- 创建类别表
CREATE TABLE category (
c_id SERIAL PRIMARY KEY,
income_type boolean,
meta JSONB
);
-- 创建流水表
CREATE TABLE transaction (
t_id SERIAL PRIMARY KEY,
amount DECIMAL(10, 2),
date DATE,
c_id INTEGER REFERENCES category(c_id),
a_id INTEGER REFERENCES account(a_id),
meta JSONB