Guest User

Untitled

a guest
Jan 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. DROP TABLE IF EXISTS `label_subscription_offerings`;
  2. CREATE TABLE IF NOT EXISTS `label_subscription_offerings` (
  3. `id` int(11) NOT NULL AUTO_INCREMENT,
  4. `label_id` int(11) NOT NULL,
  5. `merchant_plan_id` varchar(255) NOT NULL,
  6. `subscription_type` int(11) NOT NULL,
  7. `price` decimal(10,2) NOT NULL,
  8. PRIMARY KEY (`id`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Add Comment
Please, Sign In to add comment