13 lines
246 B
MySQL
13 lines
246 B
MySQL
|
-- +goose Up
|
||
|
-- +goose StatementBegin
|
||
|
CREATE TABLE IF NOT EXISTS "user" (
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
chat_id TEXT NOT NULL
|
||
|
);
|
||
|
-- +goose StatementEnd
|
||
|
|
||
|
-- +goose Down
|
||
|
-- +goose StatementBegin
|
||
|
DROP TABLE IF EXISTS "user";
|
||
|
-- +goose StatementEnd
|