* feat: instance usernames * fix: sqlx + ee ref * feat: make one-off button for enabling * chore: set ee ref * fix: permissions and nits * fix: admin instance username + sqlx build * fix: revert stupid change * fix: only create instance username when setting enabled * chore: update to ee latest
6 lines
198 B
SQL
6 lines
198 B
SQL
-- Add up migration script here
|
|
create table pending_user (
|
|
email varchar(255) not null primary key,
|
|
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
|
|
username varchar(50) not null
|
|
); |