fix
This commit is contained in:
parent
6cfab72b9c
commit
d9bcceb367
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue