Lines 2538-2543
CREATE TABLE `currency` (
Link Here
|
2538 |
`active` tinyint(1) DEFAULT NULL, |
2538 |
`active` tinyint(1) DEFAULT NULL, |
2539 |
`archived` tinyint(1) DEFAULT 0, |
2539 |
`archived` tinyint(1) DEFAULT 0, |
2540 |
`p_sep_by_space` tinyint(1) DEFAULT 0, |
2540 |
`p_sep_by_space` tinyint(1) DEFAULT 0, |
|
|
2541 |
`p_cs_precedes` tinyint(1) DEFAULT 1, |
2541 |
PRIMARY KEY (`currency`) |
2542 |
PRIMARY KEY (`currency`) |
2542 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2543 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2543 |
/*!40101 SET character_set_client = @saved_cs_client */; |
2544 |
/*!40101 SET character_set_client = @saved_cs_client */; |
2544 |
- |
|
|