8 lines
165 B
MySQL
8 lines
165 B
MySQL
|
CREATE TABLE `document` (
|
||
|
`name` text NOT NULL,
|
||
|
`last_modified` integer NOT NULL,
|
||
|
`contentType` text NOT NULL,
|
||
|
`size` integer NOT NULL,
|
||
|
`perm` text NOT NULL
|
||
|
);
|