Open Alvalunasan opened 2 years ago
function syncDef misses [nullable] flag and field comments for foreign keys fields.
Include:
%{ # Defined optogenetic protocols for training optogenetic_protocol_id : int AUTO_INCREMENT # --- protocol_description : varchar(256) # String that describes stimulation protocol -> [nullable] optogenetics.OptogeneticStimulationParameter # Stimulation parameters associated with this stim protocol -> [nullable] optogenetics.OptogeneticWaveform %}
Expected to have [nullable] foreign keys imported correctly. Expected to have imported field comments
Results after syncDef:
%{ # Defined optogenetic protocols for training optogenetic_protocol_id : int AUTO_INCREMENT # --- protocol_description : varchar(256) # string that describes stimulation protocol -> optogenetics.OptogeneticStimulationParameter -> optogenetics.OptogeneticWaveform %}
"Real" table in DB
Thanks @Alvalunasan. We are reviewing now.
Related to #305
Bug Report
Description
function syncDef misses [nullable] flag and field comments for foreign keys fields.
Reproducibility
Include:
Expected Behavior
Expected to have [nullable] foreign keys imported correctly. Expected to have imported field comments
Screenshots
Results after syncDef:
"Real" table in DB