Created
February 23, 2018 17:42
-
-
Save Anan5a/97822a61319abe54c3cd7df2ba8eebe7 to your computer and use it in GitHub Desktop.
This file contains 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 IF NOT EXISTS link( | |
id INT NOT NULL AUTO_INCREMENT, | |
title VARCHAR(80) NOT NULL, | |
links TEXT NOT NULL, | |
password VARCHAR(255), | |
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, | |
PRIMARY KEY(id) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment