diff options
author | xue <> | 2006-05-30 21:26:29 +0000 |
---|---|---|
committer | xue <> | 2006-05-30 21:26:29 +0000 |
commit | b87fd00a62994d24a3708cec5f5613ed2e9a67ed (patch) | |
tree | 175dae5b58cdbeaf8d66898483c15974495ca3fc /demos/blog/protected/Common/schema.sql | |
parent | 75f28186a995aa930f6db9f05ec7b63bbd2cd284 (diff) |
merge from 3.0 branch till 1111.
Diffstat (limited to 'demos/blog/protected/Common/schema.sql')
-rw-r--r-- | demos/blog/protected/Common/schema.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/demos/blog/protected/Common/schema.sql b/demos/blog/protected/Common/schema.sql index a93512df..9c111f0c 100644 --- a/demos/blog/protected/Common/schema.sql +++ b/demos/blog/protected/Common/schema.sql @@ -66,5 +66,11 @@ INSERT INTO tblPosts (id,author_id,create_time,title,content,status) INSERT INTO tblCategories (name,description,post_count)
VALUES ('Miscellaneous','This category holds posts on any topic.',1);
+INSERT INTO tblCategories (name,description,post_count)
+ VALUES ('PRADO','Topics related with the PRADO framework.',0);
+
+INSERT INTO tblCategories (name,description,post_count)
+ VALUES ('PHP','Topics related with PHP.',0);
+
INSERT INTO tblPost2Category (post_id,category_id)
VALUES (1,1);
|