summaryrefslogtreecommitdiff
path: root/migrations/2020-02-01-032552_strava_tokens/up.sql
blob: bf7e9b14badc3d8d9aea5cbfeca269ceea6186c9 (plain)
1
2
3
4
5
6
create table strava_tokens (
  username varchar not null primary key references users(username),
  refresh_token varchar(64) not null,
  access_token varchar(64) not null,
  expires_at timestamptz not null
);