Skip to content

Commit

Permalink
Merge pull request #1 from marcusthebrown/update-column-names
Browse files Browse the repository at this point in the history
updating the column names to be in sync with spec
  • Loading branch information
tetriscode committed Aug 5, 2016
2 parents 1dab819 + 74e946e commit 6099108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpkg/gpkg_db.c
Expand Up @@ -154,9 +154,9 @@ static column_info_t gpkg_data_column_constraints_columns[] = {
{"constraint_type", "TEXT", N, SQL_NOT_NULL | SQL_UNIQUE(1), NULL},
{"value", "TEXT", N, SQL_UNIQUE(1), NULL},
{"min", "NUMERIC", N, 0, NULL},
{"minIsInclusive", "BOOLEAN", N, 0, NULL},
{"min_is_inclusive", "BOOLEAN", N, 0, NULL},
{"max", "NUMERIC", N, 0, NULL},
{"maxIsInclusive", "BOOLEAN", N, 0, NULL},
{"max_is_inclusive, "BOOLEAN", N, 0, NULL},
{"description", "TEXT", N, 0, NULL},
{NULL, NULL, N, 0, NULL}
};
Expand Down

0 comments on commit 6099108

Please sign in to comment.