summaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/postgresql/V0_2_0__Tokens.sql
blob: c89c52e93d6ef10d636ad07417cd811be9c0e0eb (plain)
1
2
3
4
5
6
7
8
9
CREATE TABLE IF NOT EXISTS token
(
    id                  serial,
    name                varchar(255)                           not null,
    username            varchar(255)                           not null unique,
    password            varchar(255)                           not null,
    created_at          timestamp with time zone default now() not null,
    PRIMARY KEY (id)
);