Skip to content

Instantly share code, notes, and snippets.

@paulomcnally
Created October 15, 2012 12:26
Show Gist options
  • Save paulomcnally/3892198 to your computer and use it in GitHub Desktop.
Save paulomcnally/3892198 to your computer and use it in GitHub Desktop.
tblTwitterAccounts
CREATE TABLE `tblTwitterAccounts` (
`id` BIGINT(20) UNSIGNED NOT NULL,
`screen_name` VARCHAR(25) NOT NULL,
`oauth_token` VARCHAR(100) NOT NULL,
`oauth_token_secret` VARCHAR(100) NOT NULL,
`app_id` INTEGER UNSIGNED NOT NULL,
PRIMARY KEY (`id`, `app_id`)
)
ENGINE = MyISAM;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment