Created
February 23, 2018 17:35
-
-
Save Anan5a/9f25ab2c5812ada56c5a8cddc6aceed8 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