[jboss-cvs] jboss-seam/examples/seambay/resources ...
Shane Bryzak
sbryzak at redhat.com
Mon Apr 23 10:37:02 EDT 2007
User: sbryzak2
Date: 07/04/23 10:37:02
Modified: examples/seambay/resources import.sql
Log:
initial urlrewrite support for feedback page
Revision Changes Path
1.8 +5 -1 jboss-seam/examples/seambay/resources/import.sql
(In the diff below, changes in quantity of whitespace are not shown.)
Index: import.sql
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/resources/import.sql,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- import.sql 19 Apr 2007 07:16:09 -0000 1.7
+++ import.sql 23 Apr 2007 14:37:02 -0000 1.8
@@ -14,9 +14,12 @@
insert into category (categoryId, name) values (14, 'Toys');
insert into category (categoryId, name) values (15, 'Video Games');
-insert into account (accountId, name, feedbackCount, feedbackScore, memberSince, location) values (1, 'honestjoe', 0, 0, CURRENT_TIMESTAMP, 'Sydney, New South Wales, Australia');
+insert into account (accountId, name, feedbackCount, feedbackScore, memberSince, location) values (1, 'honestjoe', 0, 0, CURRENT_TIMESTAMP, 'Sydney, NSW, Australia');
insert into user (userId, username, password, account_id) values (1, 'demo', 'demo', 1);
+insert into account (accountId, name, feedbackCount, feedbackScore, memberSince, location) values (2, 'bob', 0, 0, CURRENT_TIMESTAMP, 'Brisbane, QLD, Australia');
+insert into user (userId, username, password, account_id) values (2, 'bob', 'bob', 2);
+
insert into auction (auctionId, account_id, title, description, category_Id, price, bids, endDate, status) values (1, 1, 'Whistler''s Mother, original painting by James McNeill Whistler', '+Whistler''s Mother'+char(10)+'A very expensive painting, you probably couldn''t afford it.', 2, 5999999.00, 0, CURRENT_TIMESTAMP, 1);
insert into auction (auctionId, account_id, title, category_Id, price, bids, endDate, status) values (2, 1, 'Lost Tales Volume 1 by J.R.R. Tolkien', 3, 4.50, 0, CURRENT_TIMESTAMP, 1);
@@ -27,3 +30,4 @@
update auction set image_id = 1 where auctionId = 1;
update auction set image_id = 2 where auctionId = 2;
+insert into feedback (feedbackId, for_account_id, from_account_id, feedbackDate, item_id, rating, comment, response) values (1, 1, 2, CURRENT_TIMESTAMP, 1, 0, 'Pleasure to deal with', 'Thanks!');
More information about the jboss-cvs-commits
mailing list