error BD postgres tipo de dato "date"

edited julio 2010 in Beta1
Hola que tal buen dia, he estado trabajando con kumbiaphp haciendo algunas pruebas y pretendo hacer mi proyecto con este framework que esta de lujo y felicito a todos sus colaboradores y demas gente que esta en esta comunidad aportando para que PROGRAMAR SEA MAS FACIL.

A continuacion coloco el error que me salio al estar trabajando mi BD postgres en la parte de fecha, tengo el campo tipo "date" luego lo cambie a timestamp without time zone, y me arrojo el mismo error deseo saber a que se debe.

Pongo la tabla de la BD.

CREATE TABLE users
(
id integer NOT NULL DEFAULT nextval('"USERS_id_seq"'::regclass),
"name" character varying NOT NULL,
"password" character varying NOT NULL,
activo boolean NOT NULL,
creac_in timestamp without time zone,
CONSTRAINT "pkU" PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
ALTER TABLE users OWNER TO postgres;


Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for '-5.0/no DST' instead in X:\wamp\www\testsec\core\libs\db\active_record_base\active_record_base.php on line 1604

Comentarios

Sign In or Register to comment.