1. CREATE TABLE `file` ( 2. `id` Int Unsigned Not Null Auto_Increment, 3. `name` VarChar(255) Not Null Default 'Untitled.txt', 4. `mime` VarChar(50) Not Null Default 'text/plain', 5. `size` BigInt Unsigned Not Null Default 0, 6.