This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE images( | |
| uid INT NOT NULL PRIMARY KEY AUTO_INCREMENT, | |
| username VARCHAR(50), | |
| tmp_image VARCHAR(50) NOT NULL, | |
| new_image VARCHAR(50) NOT NULL, | |
| title VARCHAR(50) NOT NULL, | |
| text VARCHAR(250), | |
| created_at DATETIME DEFAULT CURRENT_TIMESTAMP | |
| ); |