From 52bade4b0da63bd77b3a29c73ce5941b1405ddbe Mon Sep 17 00:00:00 2001 From: lrbalt Date: Fri, 29 Feb 2008 13:54:29 +0000 Subject: [PATCH] update the sql for creating some sample content. git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@718 a4c988fc-2ded-0310-b66e-134b36920a42 --- tracks/db/tracks_1.04_content.sql | 56 ------------------------------ tracks/db/tracks_1.5_content.sql | 57 +++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 56 deletions(-) delete mode 100644 tracks/db/tracks_1.04_content.sql create mode 100644 tracks/db/tracks_1.5_content.sql diff --git a/tracks/db/tracks_1.04_content.sql b/tracks/db/tracks_1.04_content.sql deleted file mode 100644 index 97ffcf71..00000000 --- a/tracks/db/tracks_1.04_content.sql +++ /dev/null @@ -1,56 +0,0 @@ --- Dump of table contents --- Sample data to populate your database --- No data is included for users: create your own users via the http://YOURURL/signup page - --- Dump of table contexts --- ------------------------------------------------------------ - -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (1,'agenda',1,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (2,'call',2,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (3,'email',3,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (4,'errand',4,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (5,'lab',5,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (6,'library',6,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (7,'freetime',7,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (8,'office',8,0,1); -INSERT INTO contexts (id,name,position,hide,user_id) VALUES (11,'waiting-for',9,0,1); - - --- Dump of table notes --- ------------------------------------------------------------ - -INSERT INTO notes (id,user_id,project_id,body,created_at,updated_at) VALUES (1,1,1,'Notes on building time machines.','2005-08-07 17:31:25','2005-08-07 17:31:25'); - - --- Dump of table projects --- ------------------------------------------------------------ - -INSERT INTO projects (id,name,position,description,done,user_id) VALUES (1,'Build a working time machine',1,'',0,1); -INSERT INTO projects (id,name,position,description,done,user_id) VALUES (2,'Make more money than Billy Gates',2,'',0,1); -INSERT INTO projects (id,name,position,description,done,user_id) VALUES (3,'Evict dinosaurs from the garden',3,'',0,1); - - --- Dump of table schema_info --- ------------------------------------------------------------ - -INSERT INTO schema_info (version) VALUES (7); - - --- Dump of table todos --- ------------------------------------------------------------ - -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (1,1,2,'Call Bill Gates to find out how much he makes per day',NULL,0,'2004-11-28 16:01:00','2004-10-30',NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (2,2,3,'Call dinosaur exterminator','Ask him if I need to hire a skip for the corpses.',0,'2004-11-28 16:06:08','2004-11-30',NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (3,4,NULL,'Buy milk',NULL,1,'2004-11-28 16:06:31',NULL,'2004-11-28 00:00:00',1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (4,4,NULL,'Buy bread',NULL,1,'2004-11-28 16:06:58',NULL,'2004-11-28 00:00:00',1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (5,5,1,'Construct time dilation device',NULL,0,'2004-11-28 16:07:33',NULL,NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (6,2,1,'Phone Grandfather to ask about the paradox','Added some _notes_.',0,'2004-11-28 16:08:33','2004-12-30',NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (7,6,3,'Get a book out of the library','Dinosaurs R Us',0,'2004-12-22 14:07:06',NULL,NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (8,4,NULL,'Upgrade to Rails 0.9.1',NULL,1,'2004-12-20 17:02:52','2004-12-21','2004-12-20 00:00:00',1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (9,1,NULL,'This should be due today',NULL,0,'2004-12-31 17:23:06','2004-12-31',NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (10,1,NULL,'foo',NULL,1,'2004-12-31 18:38:34','2005-01-05','2005-01-02 12:27:10',1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (11,1,2,'Buy shares',NULL,0,'2005-01-01 12:40:26','2005-02-01',NULL,1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (12,1,3,'Buy stegosaurus bait',NULL,1,'2005-01-01 12:53:12','2005-01-02','2005-01-01 15:44:19',1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (13,1,3,'New action in context','Some notes',1,'2005-01-02 14:52:49','2005-03-01','2005-01-02 15:44:19',1); -INSERT INTO todos (id,context_id,project_id,description,notes,done,created_at,due,completed,user_id) VALUES (14,2,2,'Call stock broker','tel: 12345',0,'2005-01-03 11:38:25',NULL,NULL,1); - diff --git a/tracks/db/tracks_1.5_content.sql b/tracks/db/tracks_1.5_content.sql new file mode 100644 index 00000000..e593372f --- /dev/null +++ b/tracks/db/tracks_1.5_content.sql @@ -0,0 +1,57 @@ +-- Dump of table contents +-- Sample data to populate your database +-- No data is included for users: create your own users via the http://YOURURL/signup page + +-- Dump of table contexts +-- ------------------------------------------------------------ + +INSERT INTO "contexts" VALUES(1,'agenda',1,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(2,'call',2,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(3,'email',3,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(4,'errand',4,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(5,'lab',5,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(6,'library',6,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(7,'freetime',7,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(8,'office',8,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); +INSERT INTO "contexts" VALUES(9,'waiting for',9,'f',1,'2008-02-25 20:21:09','2008-02-25 20:21:09'); + +-- Dump of table notes +-- ------------------------------------------------------------ + +INSERT INTO "notes" VALUES(1,1,1,'Need to collect a catalogue from Time Machines R Us','2006-06-10 14:36:02','2006-06-10 14:36:02'); +INSERT INTO "notes" VALUES(2,1,1,'Should I go for a swirly effect or a whooshy one?','2006-06-10 14:36:02','2006-06-10 14:36:02'); + + +-- Dump of table projects +-- ------------------------------------------------------------ + +INSERT INTO "projects" VALUES(1,'Build a working time machine',1,1,'','active','2008-02-25 20:21:09','2008-02-25 20:21:09',NULL,NULL); +INSERT INTO "projects" VALUES(2,'Make more money than Billy Gates',2,1,'','active','2008-02-25 20:21:09','2008-02-25 20:21:09',NULL,NULL); +INSERT INTO "projects" VALUES(3,'Evict dinosaurs from the garden',3,1,'','active','2008-02-25 20:21:09','2008-02-25 20:21:09',NULL,NULL); + + +-- Dump of table schema_info +-- ------------------------------------------------------------ + +INSERT INTO "schema_info" VALUES(37); + + +-- Dump of table todos +-- ------------------------------------------------------------ + +INSERT INTO "todos" VALUES(1,1,2,'Call Bill Gates to find out how much he makes per day',NULL,'2006-06-03 14:36:02','2006-06-24',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(2,2,3,'Call dinosaur exterminator','Ask him if I need to hire a skip for the corpses.','2006-06-10 14:36:02','2006-06-24',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(3,4,NULL,'Buy milk',NULL,'2006-06-10 14:36:02',NULL,NULL,1,NULL,'completed'); +INSERT INTO "todos" VALUES(4,4,NULL,'Buy bread',NULL,'2006-06-10 14:36:02',NULL,NULL,1,NULL,'completed'); +INSERT INTO "todos" VALUES(5,5,1,'Construct time dilation device',NULL,'2006-06-10 14:36:02',NULL,NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(6,2,1,'Phone Grandfather to ask about the paradox','Added some _notes_.','2006-06-10 14:36:02','2006-06-03',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(7,6,3,'Get a book out of the library','Dinosaurs''R','2006-06-10 14:36:02',NULL,NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(8,4,NULL,'Upgrade to Rails 0.9.1',NULL,'2006-06-10 14:36:02','2006-06-10',NULL,1,NULL,'completed'); +INSERT INTO "todos" VALUES(9,1,NULL,'This should be due today',NULL,'2006-06-10 14:36:02','2006-06-10',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(10,1,NULL,'foo',NULL,'2006-06-10 14:36:02','2005-01-05',NULL,1,NULL,'completed'); +INSERT INTO "todos" VALUES(11,1,2,'Buy shares',NULL,'2006-06-10 14:36:02','2005-02-01',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(12,1,3,'Buy stegosaurus bait',NULL,'2006-06-10 14:36:02','2006-06-17',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(13,1,3,'New action in context','Some notes','2006-06-10 14:36:02','2006-06-17',NULL,1,NULL,'active'); +INSERT INTO "todos" VALUES(14,2,2,'Call stock broker','tel: 12345','2006-06-03 14:36:02',NULL,NULL,1,NULL,'active'); + +