Sha256: e2dfe7ab4e96d3c6d3908746876ea5285414cd29b8a4829df397f44752636979
Contents?: true
Size: 530 Bytes
Versions: 21
Compression:
Stored size: 530 Bytes
Contents
Sequel.migration do change do alter_table(:dynflow_actions) do long_text_type = @db.database_type == :mysql ? :mediumtext : String add_column :class, String add_column :input, long_text_type add_column :output, long_text_type # These could be removed in the future because an action can have at most one of each # and each belongs to an action add_column :plan_step_id, Integer add_column :run_step_id, Integer add_column :finalize_step_id, Integer end end end
Version data entries
21 entries across 21 versions & 1 rubygems