summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Common/schema.sql
diff options
context:
space:
mode:
authorxue <>2006-05-30 17:30:40 +0000
committerxue <>2006-05-30 17:30:40 +0000
commitfd1c45c54585b020ef528586599a1fe56e9ee1f7 (patch)
tree296fc1df232024a8ec94bb61a22bff42ab050a23 /demos/blog/protected/Common/schema.sql
parent117813a0323e5669a2cd64598119fb81dd02e979 (diff)
Added recent comments portlet.
Diffstat (limited to 'demos/blog/protected/Common/schema.sql')
-rw-r--r--demos/blog/protected/Common/schema.sql6
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);