Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@sugarlabs.org>2009-02-12 11:36:08 (GMT)
committer Tomeu Vizoso <tomeu@sugarlabs.org>2009-02-12 11:36:08 (GMT)
commit808df87e4fc2bd0e06d18cf60bd4f91a081545b0 (patch)
treeb82795f5bbcff8b8cb05eb5cc5ce1b9162b78999
parent1ee673c10afd32b29575fc70085f1a07d8169c19 (diff)
Fix addontype code, its 100 now
-rw-r--r--site/app/tests/data/sugar-test-data.sql12
1 files changed, 6 insertions, 6 deletions
diff --git a/site/app/tests/data/sugar-test-data.sql b/site/app/tests/data/sugar-test-data.sql
index a6b0f4c..08841ed 100644
--- a/site/app/tests/data/sugar-test-data.sql
+++ b/site/app/tests/data/sugar-test-data.sql
@@ -3,8 +3,8 @@ update users set password='913026c7754df0fbdc89b75007ad5a66';
SET FOREIGN_KEY_CHECKS=0;
--- Create activity addontype, 9
-insert into addontypes values (9, 0, 0, 0, now(), now());
+-- Create activity addontype, 100
+insert into addontypes values (100, 0, 0, 0, now(), now());
-- Create Sugar application, 19
insert into applications values
@@ -12,10 +12,10 @@ insert into applications values
;
INSERT INTO tags (id, name, description, addontype_id, application_id, created, modified, weight) VALUES
-(100, 50002, 50003, 9, 19, now(), now(), 0),
-(101, 50004, 50005, 9, 19, now(), now(), 0),
-(102, 50006, 50007, 9, 19, now(), now(), 0),
-(103, 50008, 50009, 9, 19, now(), now(), 0)
+(100, 50002, 50003, 100, 19, now(), now(), 0),
+(101, 50004, 50005, 100, 19, now(), now(), 0),
+(102, 50006, 50007, 100, 19, now(), now(), 0),
+(103, 50008, 50009, 100, 19, now(), now(), 0)
;