[seam-commits] Seam SVN: r10189 - trunk/seam-gen/resources.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Mar 19 00:38:28 EDT 2009


Author: dan.j.allen
Date: 2009-03-19 00:38:28 -0400 (Thu, 19 Mar 2009)
New Revision: 10189

Modified:
   trunk/seam-gen/resources/import-identity-management.sql
Log:
make SQL comment compatible with MySQL


Modified: trunk/seam-gen/resources/import-identity-management.sql
===================================================================
--- trunk/seam-gen/resources/import-identity-management.sql	2009-03-19 04:23:47 UTC (rev 10188)
+++ trunk/seam-gen/resources/import-identity-management.sql	2009-03-19 04:38:28 UTC (rev 10189)
@@ -1,5 +1,6 @@
 
-insert into user_account (id, username, password_hash, enabled) values (1, 'admin', 'Ss/jICpf9c9GeJj8WKqx1hUClEE=', 1); -- blank password
+-- admin password is blank
+insert into user_account (id, username, password_hash, enabled) values (1, 'admin', 'Ss/jICpf9c9GeJj8WKqx1hUClEE=', 1);
 insert into user_role (id, name, conditional) values (1, 'admin', false);
 insert into user_role (id, name, conditional) values (2, 'member', false);
 insert into user_role (id, name, conditional) values (3, 'guest', true);




More information about the seam-commits mailing list