add categories table and local env #12

Merged
VLADIMIR merged 2 commits from add_categories into master 2024-11-19 07:47:37 +00:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit d9bcceb367 - Show all commits

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