Lines 1678-1683
CREATE TABLE `branches` (
Link Here
|
1678 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
1678 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
1679 |
`opacuserjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC', |
1679 |
`opacuserjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC', |
1680 |
`opacusercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC', |
1680 |
`opacusercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC', |
|
|
1681 |
`branchcolor` varchar(16) DEFAULT NULL COMMENT 'branch specific color', |
1681 |
PRIMARY KEY (`branchcode`) |
1682 |
PRIMARY KEY (`branchcode`) |
1682 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1683 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1683 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1684 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1684 |
- |
|
|