6 lines
155 B
MySQL
6 lines
155 B
MySQL
|
CREATE TABLE [perfchunks] (
|
||
|
[low] int DEFAULT 0 not null,
|
||
|
[high] int DEFAULT 0 not null,
|
||
|
[avg] int DEFAULT 0 not null,
|
||
|
[createdAt] datetime not null
|
||
|
);
|