17 lines
449 B
MySQL
17 lines
449 B
MySQL
|
-- +goose Up
|
||
|
-- +goose StatementBegin
|
||
|
CREATE TABLE IF NOT EXISTS opendtu_hints (
|
||
|
-- id SERIAL PRIMARY KEY,
|
||
|
timestamp TIMESTAMPTZ,
|
||
|
-- FOREIGN KEY (timestamp) REFERENCES opendtu_log(timestamp),
|
||
|
time_sync BOOL,
|
||
|
radio_problem BOOL,
|
||
|
default_password BOOL
|
||
|
);
|
||
|
|
||
|
CREATE INDEX IF NOT EXISTS opendtu_hints_timestamp_idx ON opendtu_hints (timestamp);
|
||
|
-- +goose StatementEnd
|
||
|
-- +goose Down
|
||
|
-- +goose StatementBegin
|
||
|
-- +goose StatementEnd
|