auth-server/migrations/2020-03-01-122646_create_tokens/up.sql
Alex Wright 6cb7b5affa Adding diesel dep.
Need somewhere to store sessions and tokens.
2020-03-01 16:57:53 +01:00

9 lines
230 B
SQL

-- Your SQL goes here
CREATE TABLE tokens (
id SERIAL PRIMARY KEY,
user_id INTEGER REFERENCES users (id),
token VARCHAR(255) UNIQUE,
created_at TIMESTAMPTZ DEFAULT now(),
updated_at TIMESTAMPTZ DEFAULT NULL
);