We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
On the up.sql script that is used as a first migration.
This: created_at TIMESTAMP NOT NULL DEFAULT NOW(), fails when using sqlite as a database.
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
One way to solve it is to replace it with: created_at TIMESTAMP NOT NULL DEFAULT (strftime('%s','now')),
created_at TIMESTAMP NOT NULL DEFAULT (strftime('%s','now')),