bitque/migrations/2020-03-25-150010_create_tokens/up.sql

9 lines
275 B
MySQL
Raw Permalink Normal View History

2020-04-02 16:14:07 +02:00
CREATE TABLE tokens (
id serial primary key not null,
user_id integer not null references users (id),
access_token uuid not null,
refresh_token uuid not null,
created_at timestamp not null default now(),
updated_at timestamp not null default now()
);