Displaying 2 results from an estimated 2 matches for "email_valid".
Did you mean:
vmfail_valid
2006 May 10
8
E-mail validtor??
Does anyone have a good working e-mail validator? or even some regexp to
make the validates_format_of work right... that would be awesome. Also,
maybe an online tutorial for regexp. i''ve always been afraid of it but i
think it''s time to face the fears.
thanks!
--
Posted via http://www.ruby-forum.com/.
2005 Dec 29
7
belongs_to causing NoMethodError exceptions ... ?
...TABLE users CASCADE;
CREATE TABLE users (
LIKE generic_users INCLUDING DEFAULTS
, id SERIAL PRIMARY KEY
, account_id int NOT NULL REFERENCES accounts(id) ON
UPDATE CASCADE ON DELETE CASCADE
, is_account_admin bool NOT NULL DEFAULT false
, email_validation_key text NOT NULL
, email_validated bool NOT NULL DEFAULT false
, pending_user_id int NOT NULL REFERENCES pending_users(id)
ON UPDATE CASCADE ON DELETE CASCADE
);
DROP TABLE pending_users CASCADE;
CREATE TABLE pending_users (
id SERIAL PRIMAR...