diff --git a/tracks/db/tracks_1.031_content.sql b/tracks/db/tracks_1.031_content.sql index cb180fcb..e9be2051 100644 --- a/tracks/db/tracks_1.031_content.sql +++ b/tracks/db/tracks_1.031_content.sql @@ -25,9 +25,9 @@ INSERT INTO notes (id,user_id,project_id,body,created_at,updated_at) VALUES (1,1 -- Dump of table projects -- ------------------------------------------------------------ -INSERT INTO projects (id,name,position,done,user_id) VALUES (1,'Build a working time machine',1,0,1); -INSERT INTO projects (id,name,position,done,user_id) VALUES (2,'Make more money than Billy Gates',2,0,1); -INSERT INTO projects (id,name,position,done,user_id) VALUES (3,'Evict dinosaurs from the garden',3,0,1); +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 diff --git a/tracks/test/fixtures/contexts.yml b/tracks/test/fixtures/contexts.yml index a876f3e7..bba6c650 100644 --- a/tracks/test/fixtures/contexts.yml +++ b/tracks/test/fixtures/contexts.yml @@ -3,44 +3,62 @@ agenda: id: 1 name: agenda + position: 1 + hide: 0 user_id: 1 call: id: 2 name: call + position: 2 + hide: 0 user_id: 1 email: id: 3 name: email + position: 3 + hide: 0 user_id: 1 errand: id: 4 name: errand + position: 4 + hide: 0 user_id: 1 lab: id: 5 name: lab + position: 5 + hide: 0 user_id: 1 library: id: 6 name: library + position: 6 + hide: 0 user_id: 1 freetime: id: 7 name: freetime + position: 7 + hide: 0 user_id: 1 office: id: 8 name: office + position: 8 + hide: 0 user_id: 1 waitingfor: id: 9 name: waiting for + position: 9 + hide: 0 user_id: 1 diff --git a/tracks/test/fixtures/projects.yml b/tracks/test/fixtures/projects.yml index d346ddde..95c45f4d 100644 --- a/tracks/test/fixtures/projects.yml +++ b/tracks/test/fixtures/projects.yml @@ -4,6 +4,7 @@ timemachine: id: 1 name: Build a working time machine description: '' + position: 1 done: 0 user_id: 1 @@ -11,6 +12,7 @@ moremoney: id: 2 name: Make more money than Billy Gates description: '' + position: 2 done: 0 user_id: 1 @@ -18,5 +20,6 @@ gardenclean: id: 3 name: Evict dinosaurs from the garden description: '' + position: 3 done: 0 user_id: 1