VvebOIDC/install/sql/mysqli/schema/subscription/subscription_plan.sql

16 lines
629 B
SQL

DROP TABLE IF EXISTS `subscription_plan`;
CREATE TABLE `subscription_plan` (
`subscription_plan_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`period` enum('day','week','month','year') NOT NULL,
`length` int(10) UNSIGNED NOT NULL,
`cycle` int(10) UNSIGNED NOT NULL,
`trial_period` enum('day','week','month','year') NOT NULL,
`trial_length` int(10) UNSIGNED NOT NULL,
`trial_cycle` int(10) UNSIGNED NOT NULL,
`trial_status` tinyint(4) NOT NULL,
`status` tinyint NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`subscription_plan_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;