gosora/schema/pgsql/query_perfchunks.sql
2022-02-21 03:16:15 +00:00

6 lines
168 B
SQL

CREATE TABLE "perfchunks" (
`low` int DEFAULT 0 not null,
`high` int DEFAULT 0 not null,
`avg` int DEFAULT 0 not null,
`createdAt` timestamp not null
);