Remove the dictionary tables. They're not used
authoraland <aland>
Fri, 20 Jul 2007 12:52:45 +0000 (12:52 +0000)
committeraland <aland>
Fri, 20 Jul 2007 12:52:45 +0000 (12:52 +0000)
raddb/sql/mysql/schema.sql
raddb/sql/oracle/schema.sql
raddb/sql/postgresql/schema.sql

index e3db467..fcc8d15 100644 (file)
@@ -132,25 +132,6 @@ CREATE TABLE radpostauth (
   PRIMARY KEY  (id)
 ) ;
 
-######################################################################
-#
-#  The next table is commented out because it is not
-#  currently used in the server.
-#
-
-#
-# Table structure for table 'dictionary'
-#
-#CREATE TABLE dictionary (
-#  id int(10) DEFAULT '0' NOT NULL auto_increment,
-#  Type varchar(30),
-#  Attribute varchar(64),
-#  Value varchar(64),
-#  Format varchar(20),
-#  Vendor varchar(32),
-#  PRIMARY KEY (id)
-#);
-
 #
 # Table structure for table 'nas'
 #
index bcdba7c..8d2fac4 100644 (file)
@@ -8,19 +8,6 @@
  */
 
 /*
- * Table structure for table 'dictionary'
- */
-CREATE TABLE dictionary (
-       id              INT PRIMARY KEY,
-       type            VARCHAR(30),
-       attribute       VARCHAR(32),
-       value           VARCHAR(32),
-       format          VARCHAR(20),
-       vendor          VARCHAR(32)
-);
-CREATE SEQUENCE dictionary_seq START WITH 1 INCREMENT BY 1;
-
-/*
  * Table structure for table 'nas'
  */
 
index e3b712a..6b5d11b 100644 (file)
@@ -194,19 +194,6 @@ CREATE TABLE radpostauth (
        authdate                TIMESTAMP with time zone NOT NULL default 'now'
 );
 
---
--- Table structure for table 'dictionary'
--- This is not currently used by FreeRADIUS
---
--- CREATE TABLE dictionary (
---     id              SERIAL PRIMARY KEY,
---     Type            VARCHAR(30),
---     Attribute       VARCHAR(64),
---     Value           VARCHAR(64),
---     Format          VARCHAR(20),
---     Vendor          VARCHAR(32)
--- );
-
 /*
  * Note: (pnixon: 2003-12-10) The following function should not be required
  * if you use the PG specific queries in raddb/postgresql.conf