Lines 2154-2159
CREATE TABLE `restriction_types` (
Link Here
|
2154 |
`display_text` text NOT NULL, |
2154 |
`display_text` text NOT NULL, |
2155 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
2155 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
2156 |
`is_default` tinyint(1) NOT NULL DEFAULT 0, |
2156 |
`is_default` tinyint(1) NOT NULL DEFAULT 0, |
|
|
2157 |
`lift_after_payment` tinyint(1) NOT NULL DEFAULT 0, |
2158 |
`fee_limit` decimal(28,6) DEFAULT NULL |
2157 |
PRIMARY KEY (`code`) |
2159 |
PRIMARY KEY (`code`) |
2158 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2160 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2159 |
|
2161 |
|
2160 |
- |
|
|