Files
projet_gestion_commande/monitoring/s3/init-db/01-releases.sql
T
2026-07-11 22:30:38 +02:00

10 lines
295 B
SQL

CREATE TABLE IF NOT EXISTS releases (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
runtime_version VARCHAR(255) NOT NULL,
path VARCHAR(255) NOT NULL,
timestamp TIMESTAMP NOT NULL,
commit_hash VARCHAR(255) NOT NULL,
commit_message VARCHAR(255) NOT NULL,
update_id VARCHAR(255)
);