[AppDB] fix user_list.sql to create administrator account properly

Tony Lambregts tony.lambregts at gmail.com
Tue Oct 4 22:39:16 CDT 2005


when we added the feilds  to track whether a user was warned, we did not 
add them in when we create the admin account.

Change log: fix creation of adminstrator account

Files changed: tables/user_list.sql

-------------- next part --------------
Index: tables/user_list.sql
===================================================================
RCS file: /home/wine/appdb/tables/user_list.sql,v
retrieving revision 1.8
diff -u -r1.8 user_list.sql
--- tables/user_list.sql	28 Sep 2005 00:32:48 -0000	1.8
+++ tables/user_list.sql	5 Oct 2005 03:32:56 -0000
@@ -17,6 +17,6 @@
 );
 
 insert into user_list values (NOW(), 0, password('testing'), 'Administrator',
-	'Admin at localhost', NOW(), 0);
+	'Admin at localhost', NOW(), NOW(), 'false' ,'' );
 update user_list set userid = 1000 where email = 'Admin at localhost';
 


More information about the wine-patches mailing list