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