infoalloggi-monorepo/apps/db/migrations/17_payments.up.sql
Marco Pedone 3d70810937 feat(migrations): Add multiple database migrations for new tables and data seeding
- Created migration scripts for new tables including banlist, banners, event_queue, flags, testi_e_stringhe, and ratelimiter.
- Added data seeding for banners, etichette, flags, prezziario, and testi_e_stringhe with idempotent inserts.
- Initialized database with necessary extensions and user tables.
- Updated servizio table to include new columns for managing service states.
- Established foreign key relationships and unique constraints across various tables.
- Implemented sequences for auto-incrementing primary keys in several tables.
2025-10-30 19:14:31 +01:00

61 lines
No EOL
1.9 KiB
SQL

-- Payments Status Enum
DO $$ BEGIN
CREATE TYPE public."PaymentStatusEnum" AS ENUM ('processing', 'success', 'failed');
EXCEPTION
WHEN duplicate_object THEN NULL;
END $$;
-- Payments Table
CREATE TABLE IF NOT EXISTS public.payments (
id UUID DEFAULT gen_random_uuid () NOT NULL,
userid UUID NOT NULL,
amount_cent integer NOT NULL,
created_at TIMESTAMP WITHOUT TIME ZONE DEFAULT now() NOT NULL,
paymentmethod TEXT,
paymentname TEXT NOT NULL,
paid_at TIMESTAMP WITHOUT TIME ZONE,
intent_id TEXT,
paymentstatus public."PaymentStatusEnum",
servizio_id UUID NOT NULL,
ordine_id UUID NOT NULL
);
-- Primary Key
DO $$ BEGIN
ALTER TABLE public.payments
ADD CONSTRAINT payments_pkey PRIMARY KEY (id);
EXCEPTION
WHEN invalid_table_definition THEN
RAISE NOTICE 'Primary key already exists. Ignoring...';
END $$;
-- Foreign Key to Ordini
DO $$ BEGIN IF NOT EXISTS (
SELECT 1 FROM pg_constraint
WHERE conname = 'payments_ordine_fkey'
) THEN
ALTER TABLE public.payments
ADD CONSTRAINT payments_ordine_fkey
FOREIGN KEY (ordine_id) REFERENCES public.ordini (ordine_id)
ON UPDATE CASCADE ON DELETE CASCADE;
END IF;
END $$;
-- Foreign Key to Servizio
DO $$ BEGIN IF NOT EXISTS (
SELECT 1 FROM pg_constraint
WHERE conname = 'payments_servizio_fkey'
) THEN
ALTER TABLE public.payments
ADD CONSTRAINT payments_servizio_fkey
FOREIGN KEY (servizio_id) REFERENCES public.servizio (servizio_id)
ON UPDATE CASCADE ON DELETE CASCADE;
END IF;
END $$;
-- Foreign Key to Users
DO $$ BEGIN IF NOT EXISTS (
SELECT 1 FROM pg_constraint
WHERE conname = 'payments_userid_fkey'
) THEN
ALTER TABLE public.payments
ADD CONSTRAINT payments_userid_fkey
FOREIGN KEY (userid) REFERENCES public.users (id)
ON UPDATE CASCADE ON DELETE CASCADE;
END IF;
END $$;