mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-31 00:16:47 +01:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
exports.up = function (db, callback) {
|
||
|
db.runSql(
|
||
|
`
|
||
|
create table IF NOT EXISTS public_signup_tokens
|
||
|
(
|
||
|
secret text primary key,
|
||
|
name text,
|
||
|
expires_at timestamp with time zone not null,
|
||
|
created_at timestamp with time zone not null default now(),
|
||
|
created_by text,
|
||
|
role_id integer not null references roles (id) ON DELETE CASCADE
|
||
|
);
|
||
|
|
||
|
create table IF NOT EXISTS public_signup_tokens_user
|
||
|
(
|
||
|
secret text not null references public_signup_tokens (secret) on DELETE CASCADE,
|
||
|
user_id integer not null references users (id) ON DELETE CASCADE,
|
||
|
created_at timestamp with time zone not null default now(),
|
||
|
primary key (secret, user_id)
|
||
|
);
|
||
|
`,
|
||
|
callback,
|
||
|
);
|
||
|
};
|
||
|
|
||
|
exports.down = function (db, callback) {
|
||
|
db.runSql(
|
||
|
`
|
||
|
DROP TABLE public_signup_tokens;
|
||
|
DROP TABLE public_signup_tokens_user;
|
||
|
DROP TABLE public_signup_tokens_role;
|
||
|
`,
|
||
|
callback,
|
||
|
);
|
||
|
};
|