9 lines
216 B
SQL
9 lines
216 B
SQL
CREATE TABLE `metrics` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`metric_type` text NOT NULL,
|
|
`period` text NOT NULL,
|
|
`value` integer DEFAULT 0 NOT NULL,
|
|
`created_at` integer NOT NULL,
|
|
`updated_at` integer NOT NULL
|
|
);
|