Skip to content

Commit

Permalink
Update ndb schema.sql
Browse files Browse the repository at this point in the history
Fix radusergroup table structure - add missing id primary key column
  • Loading branch information
0xACCE55 authored and arr2036 committed Sep 10, 2024
1 parent 44dbade commit 650f724
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions raddb/mods-config/sql/main/ndb/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,11 @@ CREATE TABLE radreply (
-- Table structure for table 'radusergroup'
--
CREATE TABLE radusergroup (
id int(11) unsigned NOT NULL auto_increment,
username varchar(64) NOT NULL default '',
groupname varchar(64) NOT NULL default '',
priority int(11) NOT NULL default '1',
PRIMARY KEY (id),
KEY username (username(32))
) ENGINE=ndbcluster;

Expand Down

0 comments on commit 650f724

Please sign in to comment.