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
10 lines
292 B
SQL
10 lines
292 B
SQL
create table if not exists records (
|
|
id uuid primary key,
|
|
title text not null,
|
|
updated_at timestamptz not null
|
|
);
|
|
|
|
insert into records (id, title, updated_at)
|
|
select '00000000-0000-0000-0000-000000000001'::uuid, 'Erster Datensatz', now()
|
|
where not exists (select 1 from records);
|