You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
437 B
20 lines
437 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE log_post (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
log_short_id TEXT NOT NULL,
|
|
time TIMESTAMP NOT NULL,
|
|
kind TEXT NOT NULL,
|
|
nick TEXT NOT NULL,
|
|
text TEXT NOT NULL,
|
|
position INT NOT NULL,
|
|
ts_vector TSVECTOR NOT NULL,
|
|
|
|
UNIQUE (log_short_id, position)
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE log_post;
|
|
-- +goose StatementEnd
|