The changes in the above issue (at least at the time of this writing), involve adding a record_type_id column in the data_sources table which references the record_types table. However, the record_type column currently still persists, existing of necessity for backwards compatibility with the Data Sources Mirror and other code. To keep things clean, we'll want to get rid of the record_type column and adjust all code which references it to refer to the record_types table instead.
Dependent on the completion of #352
The changes in the above issue (at least at the time of this writing), involve adding a
record_type_id
column in thedata_sources
table which references therecord_types
table. However, therecord_type
column currently still persists, existing of necessity for backwards compatibility with the Data Sources Mirror and other code. To keep things clean, we'll want to get rid of therecord_type
column and adjust all code which references it to refer to therecord_types
table instead.