6 lines
170 B
SQL
6 lines
170 B
SQL
CREATE TABLE [memchunks] (
|
|
[count] int DEFAULT 0 not null,
|
|
[stack] int DEFAULT 0 not null,
|
|
[heap] int DEFAULT 0 not null,
|
|
[createdAt] datetime not null
|
|
); |