]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix duplicated index names (#4095)
authorJorge Pereira <jpereira@users.noreply.github.com>
Thu, 27 May 2021 09:58:35 +0000 (06:58 -0300)
committerGitHub <noreply@github.com>
Thu, 27 May 2021 09:58:35 +0000 (10:58 +0100)
raddb/mods-config/sql/main/sqlite/schema.sql

index d6277531a9a032976ce4c853f16a4198d314070a..9bdaf71f34013de79504b9bf6e090c8cf0e38979 100644 (file)
@@ -136,8 +136,8 @@ CREATE TABLE IF NOT EXISTS radpostauth (
        authdate timestamp NOT NULL,
        class varchar(64) default NULL
 );
-CREATE INDEX username ON radpostauth(username);
-CREATE INDEX class ON radpostauth(class);
+CREATE INDEX radpostauth_username ON radpostauth(username);
+CREATE INDEX radpostauth_class ON radpostauth(class);
 
 --
 -- Table structure for table 'nas'