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.
9 lines
246 B
MySQL
9 lines
246 B
MySQL
4 years ago
|
-- 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
|
||
|
)
|