Lines 1609-1614
CREATE TABLE `branches` (
Link Here
|
1609 |
`marcorgcode` varchar(16) DEFAULT NULL COMMENT 'MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode', |
1609 |
`marcorgcode` varchar(16) DEFAULT NULL COMMENT 'MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode', |
1610 |
`pickup_location` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'the ability to act as a pickup location', |
1610 |
`pickup_location` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'the ability to act as a pickup location', |
1611 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
1611 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
|
|
1612 |
`userjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC', |
1613 |
`usercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC', |
1612 |
PRIMARY KEY (`branchcode`) |
1614 |
PRIMARY KEY (`branchcode`) |
1613 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1615 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1614 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1616 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1615 |
- |
|
|