7 lines
400 B
SQL
7 lines
400 B
SQL
INSERT INTO `subscription_plan` (`subscription_plan_id`, `trial_period`, `trial_length`, `trial_cycle`, `trial_status`, `period`, `length`, `cycle`, `status`, `sort_order`) VALUES
|
|
(1, 'day', 14, 1, 1, 'month', 12, 1, 1, 0),
|
|
(2, 'day', 14, 1, 1, 'month', 12, 1, 1, 0),
|
|
(3, 'day', 14, 1, 1, 'month', 12, 1, 1, 0),
|
|
(4, 'day', 14, 1, 1, 'month', 12, 1, 1, 0),
|
|
(5, 'day', 14, 1, 1, 'month', 12, 1, 1, 0);
|