mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 06:32:34 +02:00
* Changed the type of the 'REPLICATORS.URL_PASSWORD` field in the database to 'text'. * Applied Base64 encoding to the 'REPLICATORS.URL_PASSWORD' field in the database. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
22 lines
853 B
Plaintext
22 lines
853 B
Plaintext
REPLICATORS Table Layout for Rivendell
|
|
|
|
The REPLICATORS table holds data concerning each individual replicator
|
|
configuration on the system.
|
|
|
|
FIELD NAME TYPE REMARKS
|
|
------------------------------------------------------------------
|
|
NAME varchar(32) not null, primary key
|
|
DESCRIPTION varchar(64)
|
|
TYPE_ID int(10) unsigned not null
|
|
STATION_NAME varchar(64) from STATIONS.NAME
|
|
FORMAT int(10) unsigned
|
|
CHANNELS int(10) unsigned
|
|
SAMPRATE int(10) unsigned
|
|
BITRATE int(10) unsigned
|
|
QUALITY int(10) unsigned
|
|
URL varchar(255)
|
|
URL_USERNAME varchar(64)
|
|
URL_PASSWORD text Base64 encoded
|
|
ENABLE_METADATA enum('N','Y')
|
|
NORMALIZATION_LEVEL int(11) signed
|