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