7b6624ecc3
redesigned the project sharing popup to be a multi select dropdown that populates the options by using the input as a fuzzy search filter on the current users & invited users. users can now also be directly invited by email from the project share window. if invited this way, then the user will receive an email that sends them to a registration page, then a confirmation page. the initial registration was always redone so that it uses a similar system to the above in that it now will accept the first registered user if there are no other accounts (besides 'system').
5 lines
138 B
SQL
5 lines
138 B
SQL
CREATE TABLE user_account_confirm_token (
|
|
confirm_token_id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
email text NOT NULL UNIQUE
|
|
);
|