mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 07:40:12 +01:00
Fixed some errors in the example database schemas.
git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@42 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
parent
702180e8b2
commit
eee3480918
2 changed files with 18 additions and 21 deletions
|
|
@ -10,15 +10,15 @@
|
||||||
# Dump of table contexts
|
# Dump of table contexts
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
|
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("1","agenda","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("1","agenda","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("2","call","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("2","call","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("3","email","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("3","email","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("4","errand","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("4","errand","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("5","lab","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("5","lab","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("6","library","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("6","library","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("7","freetime","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("7","freetime","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("8","office","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("8","office","0");
|
||||||
INSERT INTO `contexts` (`id`,`name`) VALUES ("11","waiting-for","0");
|
INSERT INTO `contexts` (`id`,`name`,`hide`) VALUES ("11","waiting-for","0");
|
||||||
|
|
||||||
|
|
||||||
# Dump of table projects
|
# Dump of table projects
|
||||||
|
|
@ -46,6 +46,3 @@ INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`d
|
||||||
INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`due`,`completed`,`project_id`) VALUES ("85","1","Buy stegosaurus bait","","1","2005-01-01 12:53:12","2005-01-02","2005-01-01 12:53:43","3");
|
INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`due`,`completed`,`project_id`) VALUES ("85","1","Buy stegosaurus bait","","1","2005-01-01 12:53:12","2005-01-02","2005-01-01 12:53:43","3");
|
||||||
INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`due`,`completed`,`project_id`) VALUES ("92","1","New action in context","Some notes","1","2005-01-02 14:52:49","2005-03-01","2005-01-02 15:44:19","3");
|
INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`due`,`completed`,`project_id`) VALUES ("92","1","New action in context","Some notes","1","2005-01-02 14:52:49","2005-03-01","2005-01-02 15:44:19","3");
|
||||||
INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`due`,`completed`,`project_id`) VALUES ("97","2","Call stock broker","tel: 12345","0","2005-01-03 11:38:25","0000-00-00",NULL,"2");
|
INSERT INTO `todos` (`id`,`context_id`,`description`,`notes`,`done`,`created`,`due`,`completed`,`project_id`) VALUES ("97","2","Call stock broker","tel: 12345","0","2005-01-03 11:38:25","0000-00-00",NULL,"2");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,15 +53,15 @@ CREATE TABLE 'users' (
|
||||||
# Dump of table contexts
|
# Dump of table contexts
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
|
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("1","agenda","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("1","agenda","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("2","call","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("2","call","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("3","email","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("3","email","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("4","errand","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("4","errand","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("5","lab","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("5","lab","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("6","library","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("6","library","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("7","freetime","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("7","freetime","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("8","office","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("8","office","0");
|
||||||
INSERT INTO 'contexts' ('id','name') VALUES ("11","waiting-for","0");
|
INSERT INTO 'contexts' ('id','name','hide') VALUES ("11","waiting-for","0");
|
||||||
|
|
||||||
|
|
||||||
# Dump of table projects
|
# Dump of table projects
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue