8 lines
174 B
MySQL
8 lines
174 B
MySQL
|
CREATE TABLE `image` (
|
||
|
`created_at` integer DEFAULT (current_timestamp),
|
||
|
`url` text NOT NULL,
|
||
|
`average` text NOT NULL,
|
||
|
`blurhash` text NOT NULL,
|
||
|
`mime` text NOT NULL
|
||
|
);
|