mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
- add exemplaire_baiu, exemplaire_erg, cc4r, remarks; - add is_ulb to jury; - split jury_lecteurs into interne/externe in view; - refactor admin edit form with backoffice fields; - update public fiche to show promoteur ULB and split lecteurs
6 lines
292 B
SQL
6 lines
292 B
SQL
-- Migration 008: add is_archived to share_links
|
|
-- Required by ShareLink::listActive() / listArchived() / archive() / validateLink().
|
|
ALTER TABLE share_links ADD COLUMN is_archived INTEGER NOT NULL DEFAULT 0;
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_share_links_archived ON share_links(is_archived);
|