TIMESTAMP unrecognized

Hello, I have a field with a TIMESTAMP date and time ("2018-05-03 15:00:51") but at the time of filtering, the type is time.

Captura%20de%20pantalla%20de%202018-05-31%2009-59-12

The field is created.

CREATE TABLE "quotation"(
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"name" CHAR(512),
"client" INTEGER REFERENCES "client" ("id") ON DELETE CASCADE  ,
"description" TEXT,
"state" INTEGER REFERENCES "quotation_state" ("id") ON DELETE CASCADE  ,
"created" TIMESTAMP,
"company" INTEGER REFERENCES "company" ("id") ON DELETE CASCADE  

);

Which database do you use?

What’s your Metabase version?