Skip to content

Commit

Permalink
Merge pull request #277 from openreferral/262-spelling
Browse files Browse the repository at this point in the history
262 spelling
  • Loading branch information
odscjames committed Nov 5, 2021
2 parents 35df65f + c43f242 commit 8de929c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions database/database_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ DROP TABLE IF EXISTS `location`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `location` (
`id` varchar(250) NOT NULL COMMENT 'Each location must have a unique identifier',
`organization_id` varchar(250) DEFAULT NULL COMMENT 'Each location entry should be linked to a single organization. This is the organization that is responsible for maintaining information about this location. The identifier of the organization should be given here. Details of the services the organisation delivers at this location should be provided in the services_at_location table.',
`organization_id` varchar(250) DEFAULT NULL COMMENT 'Each location entry should be linked to a single organization. This is the organization that is responsible for maintaining information about this location. The identifier of the organization should be given here. Details of the services the organization delivers at this location should be provided in the services_at_location table.',
`name` text COMMENT 'The name of the location',
`alternate_name` text COMMENT 'An alternative name for the location',
`description` text COMMENT 'A description of this location.',
Expand Down Expand Up @@ -262,7 +262,7 @@ CREATE TABLE `phone` (
`id` varchar(250) NOT NULL COMMENT 'Each entry must have a unique identifier',
`location_id` varchar(250) DEFAULT NULL COMMENT 'The identifier of the location where this phone number is located',
`service_id` varchar(250) DEFAULT NULL COMMENT 'The identifier of the service for which this is the phone number',
`organization_id` varchar(250) DEFAULT NULL COMMENT 'The identifier of the organisation for which this is the phone number',
`organization_id` varchar(250) DEFAULT NULL COMMENT 'The identifier of the organization for which this is the phone number',
`contact_id` varchar(250) DEFAULT NULL COMMENT 'The identifier of the contact for which this is the phone number',
`service_at_location_id` varchar(250) DEFAULT NULL COMMENT 'The identifier of the ''service at location'' table entry, when this phone number is specific to a service in a particular location.',
`number` text NOT NULL COMMENT 'The phone number',
Expand Down
6 changes: 3 additions & 3 deletions datapackage.json
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@
},
{
"name": "organization_id",
"description": "Each location entry should be linked to a single organization. This is the organization that is responsible for maintaining information about this location. The identifier of the organization should be given here. Details of the services the organisation delivers at this location should be provided in the services_at_location table.",
"description": "Each location entry should be linked to a single organization. This is the organization that is responsible for maintaining information about this location. The identifier of the organization should be given here. Details of the services the organization delivers at this location should be provided in the services_at_location table.",
"type": "string"
},
{
Expand Down Expand Up @@ -606,7 +606,7 @@
},
{
"name": "organization_id",
"description": "The identifier of the organisation for which this is the phone number",
"description": "The identifier of the organization for which this is the phone number",
"type": "string"
},
{
Expand Down Expand Up @@ -1136,7 +1136,7 @@
{
"name": "funding",
"path": "funding.csv",
"description": "The funding table describes the sources of funding for a service or organisation",
"description": "The funding table describes the sources of funding for a service or organization",
"format": "csv",
"mediatype": "text/csv",
"profile": "tabular-data-resource",
Expand Down

0 comments on commit 8de929c

Please sign in to comment.