Baard
unread,Jun 18, 2013, 1:42:29 AM6/18/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to uf...@googlegroups.com
Thanks for your reply. Got the class working using this table structure, using dsn with pgsql prefix.
Column | Type | Modifiers
--------------+-----------------------+-----------------------------------------------------------------
user_id | integer | not null default nextval('users_user_id_seq'::regclass)
first_name | character varying(15) |
last_name | character varying(15) |
username | character varying(15) | not null
password | character varying(35) | not null
email | character varying(35) | not null
activated | smallint | default 0
confirmation | character varying(35) |
reg_date | integer | default 0
last_login | integer | default 0
group_id | integer | default 1
Indexes:
"users_pkey" PRIMARY KEY, btree (user_id)
I do not know how important the not null modifier would be for the class, but everything seems to work well on my installation.
Best regards,
Baard.