Skip to content

Commit

Permalink
Fix typo in NDMPlevelmap table definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent c75a17a commit 42e03f8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/cats/make_mysql_tables.in
Expand Up @@ -403,7 +403,7 @@ CREATE TABLE NDMPLevelMap (
ClientId INTEGER DEFAULT 0 REFERENCES Client,
FileSetId INTEGER UNSIGNED DEFAULT 0 REFERENCES FileSet,
FileSystem TINYBLOB NOT NULL,
PathId integer NOT NULL,
DumpLevel INTEGER NOT NULL,
CONSTRAINT NDMPLevelMap_pkey PRIMARY KEY (ClientId, FilesetId, FileSystem(256))
);
Expand Down
2 changes: 1 addition & 1 deletion src/cats/make_postgresql_tables.in
Expand Up @@ -405,7 +405,7 @@ CREATE TABLE NDMPLevelMap (
ClientId INTEGER NOT NULL,
FilesetId INTEGER DEFAULT 0,
FileSystem TEXT NOT NULL,
PathId INTEGER NOT NULL,
DumpLevel INTEGER NOT NULL,
CONSTRAINT NDMPLevelMap_pkey PRIMARY KEY (ClientId, FilesetId, FileSystem)
);
Expand Down
2 changes: 1 addition & 1 deletion src/cats/update_mysql_tables.in
Expand Up @@ -30,7 +30,7 @@ CREATE TABLE NDMPLevelMap (
ClientId INTEGER DEFAULT 0 REFERENCES Client,
FileSetId INTEGER UNSIGNED DEFAULT 0 REFERENCES FileSet,
FileSystem TINYBLOB NOT NULL,
PathId integer NOT NULL,
DumpLevel INTEGER NOT NULL,
CONSTRAINT NDMPLevelMap_pkey PRIMARY KEY (ClientId, FilesetId, FileSystem(256))
);
Expand Down
2 changes: 1 addition & 1 deletion src/cats/update_postgresql_tables.in
Expand Up @@ -32,7 +32,7 @@ CREATE TABLE NDMPLevelMap (
ClientId INTEGER NOT NULL,
FilesetId INTEGER DEFAULT 0,
FileSystem TEXT NOT NULL,
PathId INTEGER NOT NULL,
DumpLevel INTEGER NOT NULL,
CONSTRAINT NDMPLevelMap_pkey PRIMARY KEY (ClientId, FilesetId, FileSystem)
);
Expand Down

0 comments on commit 42e03f8

Please sign in to comment.