forked from cfpio/callForPapers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitEventDb.sql
14 lines (9 loc) · 909 Bytes
/
initEventDb.sql
1
2
3
4
5
6
7
8
9
10
11
12
INSERT INTO `cfpdev`.`events` (`id`) VALUES ('default');
INSERT INTO `cfpdev`.`config` (`key`, `value`, `event_id`) VALUES ('eventName', 'Breizhcamp 2017', 'default');
INSERT INTO `cfpdev`.`config` (`key`, `value`, `event_id`) VALUES ('community', 'Breizhcamp', 'default');
INSERT INTO `cfpdev`.`config` (`key`, `value`, `event_id`) VALUES ('date', '23/03/2017', 'default');
INSERT INTO `cfpdev`.`config` (`key`, `value`, `event_id`) VALUES ('releaseDate', '13/01/2017', 'default');
INSERT INTO `cfpdev`.`config` (`key`, `value`, `event_id`) VALUES ('decisionDate', '25/01/2017', 'default');
INSERT INTO `cfpdev`.`config` (`key`, `value`, `event_id`) VALUES ('open', 'true', 'default');
-- pwd = toto
INSERT INTO `cfpdev`.`users` (`email`, `lastname`, `firstname`, `password`, `verified`) VALUES ('[email protected]', 'camp', 'breizh', '$2a$10$pKrWwOBhBVOCZqIzq2xqDe/AQA/tpfTbAxQzcI5vQMPKxIce6.e76', 1);