Skip to content

Commit

Permalink
Fixed unique fields for networks wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiejol committed Jun 2, 2017
1 parent bbfe0c9 commit fc73ad1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/mysql/networks.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE `networks` (
`no_domains` int(11) DEFAULT '0',
`requires_password` int(11) DEFAULT '0',
`n_order` int(11) DEFAULT '0',
unique('address'),
unique('name'),
unique(`address`),
unique(`name`),
PRIMARY KEY (`id`)
);

0 comments on commit fc73ad1

Please sign in to comment.