xtablo-source/deprecated/internal/db/seed.sql
Arthur Belleville 5d0c201e86
Some checks failed
backend-ci / Backend tests (pull_request) Failing after 53s
backend-ci / Backend tests (push) Failing after 1s
Some work
2026-05-23 17:26:01 +02:00

144 lines
2.8 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

INSERT INTO auth.users (
id,
email,
encrypted_password,
raw_user_meta_data,
created_at,
updated_at
) VALUES (
'11111111-1111-1111-1111-111111111111',
'demo@xtablo.com',
'$2a$10$/xeyC8tiOZTcw2BBOSrv.uWu.EbRMYwF7MpFcDHSS40fOoTR.QrLS',
jsonb_build_object('display_name', 'demo'),
now(),
now()
)
ON CONFLICT (email) DO NOTHING;
INSERT INTO public.tablos (
id,
owner_id,
name,
color,
status,
created_at,
updated_at,
deleted_at
) VALUES (
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Démo produit',
'#3B82F6',
'in_progress',
now(),
now(),
NULL
)
ON CONFLICT (id) DO NOTHING;
INSERT INTO public.tasks (
id,
tablo_id,
owner_id,
title,
description,
status,
assignee_id,
is_etape,
parent_task_id,
due_date,
created_at,
updated_at,
deleted_at
) VALUES
(
'33333333-3333-3333-3333-333333333331',
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Préparation',
'Étape de cadrage et de préparation de la démo.',
'in_progress',
'11111111-1111-1111-1111-111111111111',
TRUE,
NULL,
'2026-05-20',
now(),
now(),
NULL
),
(
'33333333-3333-3333-3333-333333333332',
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Livraison',
'Étape finale avant mise en ligne de la démo.',
'todo',
NULL,
TRUE,
NULL,
'2026-05-30',
now(),
now(),
NULL
),
(
'33333333-3333-3333-3333-333333333341',
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Valider le périmètre',
'Lister les fonctionnalités visibles dans la démo.',
'done',
'11111111-1111-1111-1111-111111111111',
FALSE,
'33333333-3333-3333-3333-333333333331',
'2026-05-15',
now(),
now(),
NULL
),
(
'33333333-3333-3333-3333-333333333342',
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Préparer les captures',
'Assembler les écrans et les textes de présentation.',
'in_progress',
'11111111-1111-1111-1111-111111111111',
FALSE,
'33333333-3333-3333-3333-333333333331',
'2026-05-18',
now(),
now(),
NULL
),
(
'33333333-3333-3333-3333-333333333343',
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Relire le message dannonce',
'Vérifier le texte envoyé avec la démo.',
'todo',
NULL,
FALSE,
NULL,
'2026-05-19',
now(),
now(),
NULL
),
(
'33333333-3333-3333-3333-333333333344',
'22222222-2222-2222-2222-222222222222',
'11111111-1111-1111-1111-111111111111',
'Envoyer la démo',
'Partager la version finale aux premiers retours.',
'todo',
'11111111-1111-1111-1111-111111111111',
FALSE,
'33333333-3333-3333-3333-333333333332',
'2026-05-30',
now(),
now(),
NULL
)
ON CONFLICT (id) DO NOTHING;