|
Lines 2139-2144
CREATE TABLE `restriction_types` (
Link Here
|
| 2139 |
`display_text` text NOT NULL, |
2139 |
`display_text` text NOT NULL, |
| 2140 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
2140 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
| 2141 |
`is_default` tinyint(1) NOT NULL DEFAULT 0, |
2141 |
`is_default` tinyint(1) NOT NULL DEFAULT 0, |
|
|
2142 |
`lift_after_payment` tinyint(1) NOT NULL DEFAULT 0, |
| 2143 |
`fee_limit` decimal(28,6) DEFAULT NULL |
| 2142 |
PRIMARY KEY (`code`) |
2144 |
PRIMARY KEY (`code`) |
| 2143 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2145 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 2144 |
|
2146 |
|
| 2145 |
- |
|
|