- Timestamp:
- 01/27/10 07:41:47 (13 years ago)
- Branches:
- master, qt5
- Children:
- 001c8cf
- Parents:
- 336fa33
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sql/sqlengine.cpp
r336fa33 r9f367eb 292 292 "FOREIGN KEY(xid_room) REFERENCES ROOM(id));"); 293 293 294 query.exec("CREATE TABLE EVENT_CONFLICT ( " 295 "xid_conference INTEGER NOT NULL, " 296 "xid_event INTEGER NOT NULL, " 297 "conflict_event INTEGER NOT NULL, " 298 "UNIQUE ( xid_conference, xid_event, conflict_event ) ON CONFLICT IGNORE, " 299 "FOREIGN KEY(xid_conference) REFERENCES CONFERENCE(id), " 300 "FOREIGN KEY(xid_event) REFERENCES EVENT(id));"); 301 294 302 query.exec("CREATE TABLE LINK ( " 295 303 "id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, " … … 363 371 } 364 372 } 373
Note: See TracChangeset
for help on using the changeset viewer.