Skip to content

Instantly share code, notes, and snippets.

@turntayble81
Created August 17, 2011 15:41
Show Gist options
  • Save turntayble81/1151813 to your computer and use it in GitHub Desktop.
Save turntayble81/1151813 to your computer and use it in GitHub Desktop.
DROP TABLE IF EXISTS `label_subscription_offerings`;
CREATE TABLE IF NOT EXISTS `label_subscription_offerings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`label_id` int(11) NOT NULL,
`merchant_plan_id` varchar(255) NOT NULL,
`subscription_type` int(11) NOT NULL,
`active` tinyint(4) NOT NULL,
`price` decimal(10,2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment