Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Denton committed Jul 17, 2019
1 parent ceddca4 commit c08088b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -1711,7 +1711,7 @@ public Show mapRow(ResultSet rs, int rowNum) throws SQLException {
"FROM " +
"limit_record ";

private static final String GET_LIMIT_FROM_LAYER_ID =
private static final String GET_LIMIT_FROM_LAYER_ID =
"SELECT " +
"limit_record.pk_limit_record, " +
"limit_record.str_name, " +
Expand Down
@@ -1,13 +1,13 @@

-- Create a table to keep track of arbitrary limits
CREATE TABLE "LIMIT" (
"PK_LIMIT" VARCHAR2(36 BYTE) NOT NULL,
CREATE TABLE "LIMIT_RECORD" (
"PK_LIMIT_RECORD" VARCHAR2(36 BYTE) NOT NULL,
"STR_NAME" VARCHAR2(255 BYTE) NOT NULL,
"INT_MAX_VALUE" NUMBER(38,0) DEFAULT 0 NOT NULL
);

CREATE TABLE "LAYER_LIMIT" (
"PK_LAYER_LIMIT" VARCHAR2(36 BYTE) NOT NULL,
"PK_LAYER" VARCHAR2(36 BYTE) NOT NULL,
"PK_LIMIT" VARCHAR2(36 BYTE) NOT NULL
"PK_LIMIT_RECORD" VARCHAR2(36 BYTE) NOT NULL
);

0 comments on commit c08088b

Please sign in to comment.