Publier Globinours 1.0.0-rc.3
This commit is contained in:
parent
ea8c24d622
commit
9a2b4068da
325 changed files with 38230 additions and 20 deletions
6
migrations/083_agenda_volunteers.sql
Normal file
6
migrations/083_agenda_volunteers.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
CREATE TABLE agenda_volunteers (
|
||||
agenda_item_id INTEGER NOT NULL REFERENCES agenda_items(id) ON DELETE CASCADE,
|
||||
contact_id INTEGER NOT NULL REFERENCES directory_contacts(id) ON DELETE CASCADE,
|
||||
PRIMARY KEY(agenda_item_id,contact_id)
|
||||
);
|
||||
CREATE INDEX idx_agenda_volunteers_contact ON agenda_volunteers(contact_id,agenda_item_id);
|
||||
Loading…
Add table
Add a link
Reference in a new issue