| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function create() |
||
| 25 | { |
||
| 26 | $createTableSql = 'CREATE TABLE IF NOT EXISTS events ( |
||
| 27 | organisation TEXT, |
||
| 28 | project TEXT, |
||
| 29 | event_id INTEGER, |
||
| 30 | created TEXT, |
||
| 31 | UNIQUE(organisation, project, event_id, created) |
||
| 32 | )'; |
||
| 33 | |||
| 34 | $this->connection->executeQuery($createTableSql); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |