Sha256: 3b91c2f04bcfe58ac136142a4928320330f618f75f671c741de49e8112737e7e
Contents?: true
Size: 560 Bytes
Versions: 25
Compression:
Stored size: 560 Bytes
Contents
# frozen_string_literal: true 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
25 entries across 25 versions & 1 rubygems