schema_version_3.sql 162 B

123456
  1. create table tokens (
  2. id text not null,
  3. value text not null,
  4. created_at timestamp with time zone not null default now(),
  5. primary key(id, value)
  6. );