Set up database migrations
This commit is contained in:
13
migrations/00002_sessions.sql
Normal file
13
migrations/00002_sessions.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- +goose Up
|
||||
-- +goose StatementBegin
|
||||
CREATE TABLE sessions (
|
||||
id SERIAL PRIMARY KEY,
|
||||
user_id INT UNIQUE REFERENCES users (id) ON DELETE CASCADE,
|
||||
token_hash TEXT UNIQUE NOT NULL
|
||||
);
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose Down
|
||||
-- +goose StatementBegin
|
||||
DROP TABLE sessions;
|
||||
-- +goose StatementEnd
|
||||
Reference in New Issue
Block a user