Skip to content

Instantly share code, notes, and snippets.

@paulomcnally
Created October 15, 2012 12:18
Show Gist options
  • Save paulomcnally/3892174 to your computer and use it in GitHub Desktop.
Save paulomcnally/3892174 to your computer and use it in GitHub Desktop.
tblTwitterApps
CREATE TABLE `tblTwitterApps` (
`app_id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
`app_name` VARCHAR(100) NOT NULL,
`app_consumer_key` VARCHAR(100) NOT NULL,
`app_consumer_secret` VARCHAR(100) NOT NULL,
PRIMARY KEY (`app_id`)
)
ENGINE = MyISAM;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment