- Fix exception of first login...

This commit is contained in:
Paulo Gustavo Veiga 2012-07-11 22:12:01 -03:00
parent 889369e5d8
commit 35d91102d2

View File

@ -67,7 +67,7 @@ CREATE TABLE ACCESS_AUDITORY (
id INTEGER NOT NULL IDENTITY,
user_id INTEGER NOT NULL,
login_date date,
FOREIGN KEY(user_id) REFERENCES USER(id)
--FOREIGN KEY(user_id) REFERENCES USER(id) // Temporally disabled. Exception during first login. Need review..
);
COMMIT;