Lines 1485-1490
CREATE TABLE `branches` (
Link Here
|
1485 |
`geolocation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'geolocation of your library', |
1485 |
`geolocation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'geolocation of your library', |
1486 |
`marcorgcode` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode', |
1486 |
`marcorgcode` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode', |
1487 |
`pickup_location` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'the ability to act as a pickup location', |
1487 |
`pickup_location` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'the ability to act as a pickup location', |
|
|
1488 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
1488 |
PRIMARY KEY (`branchcode`) |
1489 |
PRIMARY KEY (`branchcode`) |
1489 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1490 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1490 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1491 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1491 |
- |
|
|