7 lines
209 B
SQL
7 lines
209 B
SQL
CREATE TABLE `storage_spaces` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`name` text NOT NULL,
|
|
`description` text,
|
|
`aliases` text DEFAULT '[]' NOT NULL,
|
|
`image_urls` text DEFAULT '[]' NOT NULL
|
|
);
|