simonstre/tablebot

bug knex

Closed this issue · 2 comments

je crois qu'il y a un bug dans knex.

le schema est defini par t.timestamp( 'date' ).defaultTo( 'now()' ).notNullable();

cependant, dans mon postgres date() est interpret de la date du creaiton du schema je crois.

CREATE TABLE games
(
id serial NOT NULL,
players integer NOT NULL DEFAULT 0,
date timestamp with time zone NOT NULL DEFAULT '2016-05-11 22:29:29.951198-04'::timestamp with time zone,
messageid text NOT NULL,
channelid text NOT NULL,
CONSTRAINT games_pkey PRIMARY KEY (id)
)

Oui merci, corrigé par 71439c2.