| [vhffs-dev] [svn] commit: r93 - in /trunk: vhffs-backend/src/pgsql/create_user.sql vhffs-panel/templates/admin/misc/mailings_part.tmpl vhffs-panel/templates/admin/misc/opart.tmpl | 
[ Thread Index | 
Date Index
| More vhffs.org/vhffs-dev Archives
] 
- To: vhffs-dev@xxxxxxxxx
 
- Subject: [vhffs-dev] [svn] commit: r93 - in /trunk: vhffs-backend/src/pgsql/create_user.sql vhffs-panel/templates/admin/misc/mailings_part.tmpl vhffs-panel/templates/admin/misc/opart.tmpl
 
- From: vhffs-dev@xxxxxxxxx
 
- Date: Wed Sep 14 12:45:19 2005 +00
 
Author: soda
Date: Wed Sep 14 14:45:06 2005
New Revision: 93
Log:
fix bug in sql backend in user
fix some templates
Added:
    trunk/vhffs-panel/templates/admin/misc/mailings_part.tmpl
    trunk/vhffs-panel/templates/admin/misc/opart.tmpl
Modified:
    trunk/vhffs-backend/src/pgsql/create_user.sql
Modified: trunk/vhffs-backend/src/pgsql/create_user.sql
==============================================================================
--- trunk/vhffs-backend/src/pgsql/create_user.sql (original)
+++ trunk/vhffs-backend/src/pgsql/create_user.sql Wed Sep 14 14:45:06 2005
@@ -14,7 +14,7 @@
 	passwd varchar(40) NOT NULL DEFAULT ' '::character varying,
 	homedir varchar(40) NOT NULL DEFAULT ' '::character varying,
 	admin int4 NOT NULL,
-	object_id varchar(40) NOT NULL DEFAULT ' '::character varying,
+	object_id int4 NOT NULL,
     CONSTRAINT vhffs_users_pkey2 FOREIGN KEY (object_id) REFERENCES vhffs_object (object_id) ON UPDATE CASCADE ON DELETE CASCADE,
 	CONSTRAINT vhffs_users_pkey PRIMARY KEY (uid)
 ) WITH OIDS;