This commit is contained in:
Владимир Фёдоров 2024-11-18 20:29:45 +07:00
parent 6cfab72b9c
commit d9bcceb367
2 changed files with 4 additions and 5 deletions

View File

@ -1,6 +1,6 @@
-- +goose Up
-- +goose StatementBegin
CREATE TABLE IF NOT EXISTS "users" (
CREATE TABLE IF NOT EXISTS users (
id SERIAL PRIMARY KEY,
chat_id TEXT NOT NULL
);
@ -8,5 +8,5 @@ CREATE TABLE IF NOT EXISTS "users" (
-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS "users";
DROP TABLE IF EXISTS users;
-- +goose StatementEnd

View File

@ -3,11 +3,10 @@
CREATE TABLE IF NOT EXISTS categories (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
user_id INT REFERENCES "users"(id),
user_id INT REFERENCES users(id),
favorite BOOLEAN DEFAULT FALSE,
"limit" INT DEFAULT 0
monthly_limit INT DEFAULT 0
);
comment on column categories.limit is 'Лимит трат в месяц в копейках';
-- +goose StatementEnd
-- +goose Down