Skip to content

Commit

Permalink
Merge pull request #802 from infracaninophile/dbschema
Browse files Browse the repository at this point in the history
Allow for longer entries in the system.information column
  • Loading branch information
ddpbsd committed Apr 20, 2016
2 parents 78796ff + 8d953b2 commit 7a4b0d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/os_dbd/mysql.schema
Expand Up @@ -39,7 +39,7 @@ CREATE TABLE IF NOT EXISTS server
last_contact INT UNSIGNED NOT NULL,
version VARCHAR(32) NOT NULL,
hostname VARCHAR(64) NOT NULL UNIQUE,
information VARCHAR(128) NOT NULL,
information TEXT NOT NULL,
PRIMARY KEY (id)
);

Expand Down
2 changes: 1 addition & 1 deletion src/os_dbd/postgresql.schema
Expand Up @@ -41,7 +41,7 @@ CREATE TABLE server
last_contact INT8 NOT NULL,
version VARCHAR(32) NOT NULL,
hostname VARCHAR(64) NOT NULL UNIQUE,
information VARCHAR(128) NOT NULL,
information TEXT NOT NULL,
PRIMARY KEY (id)
);

Expand Down

0 comments on commit 7a4b0d3

Please sign in to comment.