Lines 446-451
CREATE TABLE `currency` (
Link Here
|
446 |
`active` tinyint(1) default NULL, |
446 |
`active` tinyint(1) default NULL, |
447 |
`archived` tinyint(1) DEFAULT 0, |
447 |
`archived` tinyint(1) DEFAULT 0, |
448 |
`p_sep_by_space` tinyint(1) DEFAULT 0, |
448 |
`p_sep_by_space` tinyint(1) DEFAULT 0, |
|
|
449 |
`p_cs_precedes` tinyint(1) DEFAULT 1, |
449 |
PRIMARY KEY (`currency`) |
450 |
PRIMARY KEY (`currency`) |
450 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
451 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
451 |
|
452 |
|
452 |
- |
|
|