Skip to content

Commit

Permalink
Add primary key constraint to dbmail_authlog
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-hicks authored and pjstevns committed Nov 1, 2016
1 parent 6b7eccf commit 024ba19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sql/postgresql/create_tables.pgsql
Expand Up @@ -46,7 +46,8 @@ CREATE TABLE dbmail_authlog (
dst_port INT8,
status VARCHAR(32) DEFAULT 'active',
bytes_rx INT8 DEFAULT '0' NOT NULL,
bytes_tx INT8 DEFAULT '0' NOT NULL
bytes_tx INT8 DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);


Expand Down

0 comments on commit 024ba19

Please sign in to comment.