svn commit: r235761 - user/des/fbce/db

Dag-Erling Smorgrav des at FreeBSD.org
Mon May 21 23:49:43 UTC 2012


Author: des
Date: Mon May 21 23:49:42 2012
New Revision: 235761
URL: http://svn.freebsd.org/changeset/base/235761

Log:
  Add a default value for the password column.

Modified:
  user/des/fbce/db/fbce.sql

Modified: user/des/fbce/db/fbce.sql
==============================================================================
--- user/des/fbce/db/fbce.sql	Mon May 21 23:49:14 2012	(r235760)
+++ user/des/fbce/db/fbce.sql	Mon May 21 23:49:42 2012	(r235761)
@@ -7,7 +7,7 @@ create table persons (
         id serial primary key,
         login varchar not null,
         realname varchar null,
-        password varchar not null,
+        password varchar not null default '*',
         admin boolean not null default false,
 	active boolean not null default false,
         incumbent boolean not null default false,


More information about the svn-src-user mailing list