Files
windmill/backend/migrations/20240306160522_add_pending_user.up.sql
HugoCasa cf4358a14b feat: instance usernames (#3382)
* 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
2024-03-12 11:55:18 +01:00

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
);