15 lines
461 B
MySQL
15 lines
461 B
MySQL
|
-- AUTOGENERATED BY gopkg.in/spacemonkeygo/dbx.v1
|
||
|
-- DO NOT EDIT
|
||
|
CREATE TABLE nodes (
|
||
|
id text NOT NULL,
|
||
|
audit_success_count bigint NOT NULL,
|
||
|
total_audit_count bigint NOT NULL,
|
||
|
audit_success_ratio double precision NOT NULL,
|
||
|
uptime_success_count bigint NOT NULL,
|
||
|
total_uptime_count bigint NOT NULL,
|
||
|
uptime_ratio double precision NOT NULL,
|
||
|
created_at timestamp with time zone NOT NULL,
|
||
|
updated_at timestamp with time zone NOT NULL,
|
||
|
PRIMARY KEY ( id )
|
||
|
);
|