You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-- Your SQL goes here
|
|
CREATE TABLE statistics (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
version VARCHAR(32) NOT NULL,
|
|
command VARCHAR(255) NOT NULL,
|
|
executed_at TIMESTAMP NOT NULL,
|
|
success BOOLEAN NOT NULL DEFAULT TRUE,
|
|
error_msg TEXT
|
|
) |