feat: Add password reset functionality with request and reset forms
feat: Implement price list import feature with preview and apply options feat: Create price rules management page with CRUD operations feat: Develop quotes management page with itemized quotes and status tracking feat: Introduce organization registration page for new users feat: Build suppliers management page with detailed supplier information feat: Create users management page for inviting and managing roles chore: Add TypeScript configuration for improved type checking chore: Set up Vite configuration for development server and API proxy chore: Add Vite environment type definitions for better TypeScript support
This commit is contained in:
9
backend/company-migrations/0011_user_settings.sql
Normal file
9
backend/company-migrations/0011_user_settings.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
create table if not exists {schema}.user_settings (
|
||||
user_id uuid not null,
|
||||
key text not null,
|
||||
value_ciphertext bytea not null,
|
||||
value_nonce bytea not null,
|
||||
value_key_id text not null,
|
||||
updated_at timestamptz not null default now(),
|
||||
primary key (user_id, key)
|
||||
);
|
||||
Reference in New Issue
Block a user