Skip to content

Commit

Permalink
add closed siret to [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
felhix committed Feb 17, 2025
1 parent 6ccd601 commit ada4fb2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/fixtures.sql
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ VALUES
(49, '50056940503239', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP),
(50, '20004697700019', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP),
-- back to normal organizations
(51, '13003013300016', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
(51, '13003013300016', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP),
(52, '21850292000018', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
ON CONFLICT (id)
DO UPDATE
SET (siret, created_at, updated_at) = (EXCLUDED.siret, EXCLUDED.created_at, EXCLUDED.updated_at);
Expand Down Expand Up @@ -430,7 +431,8 @@ VALUES
(74, 50, 'verified_email_domain', true),
(75, 50, 'verified_email_domain', true),
(76, 51, 'verified_email_domain', true),
(77, 51, 'verified_email_domain', true)
(77, 51, 'verified_email_domain', true),
(1, 52, 'verified_email_domain', true)
ON CONFLICT (user_id, organization_id)
DO UPDATE
SET (verification_type, has_been_greeted)
Expand Down

0 comments on commit ada4fb2

Please sign in to comment.