Lines 2089-2094
CREATE TABLE `restriction_types` (
Link Here
|
2089 |
`display_text` text NOT NULL, |
2089 |
`display_text` text NOT NULL, |
2090 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
2090 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
2091 |
`is_default` tinyint(1) NOT NULL DEFAULT 0, |
2091 |
`is_default` tinyint(1) NOT NULL DEFAULT 0, |
|
|
2092 |
`lift_after_payment` tinyint(1) NOT NULL DEFAULT 0, |
2093 |
`fee_limit` decimal(28,6) DEFAULT NULL |
2092 |
PRIMARY KEY (`code`) |
2094 |
PRIMARY KEY (`code`) |
2093 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2095 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2094 |
|
2096 |
|
2095 |
- |
|
|