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 David Farning <dfarning@gmail.com>2009-03-21 00:19:25 (GMT)
commit4481bf7d64e49b49f5ce24b9e1214da95db552d5 (patch)
tree295ad511ed17d3e0265fff31bd4c16e493ccfbfa
parentc182bfef56d4d8bc7e61a312ebe375f1ebe52195 (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)
;