Skip to content

Instantly share code, notes, and snippets.

@Anan5a
Created February 23, 2018 17:35
Show Gist options
  • Save Anan5a/9f25ab2c5812ada56c5a8cddc6aceed8 to your computer and use it in GitHub Desktop.
Save Anan5a/9f25ab2c5812ada56c5a8cddc6aceed8 to your computer and use it in GitHub Desktop.
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