Sha256: e00d9fe143b52b650ddf78802a78687b9796dfe563cc5e31fe51740a7294d4b8
Contents?: true
Size: 430 Bytes
Versions: 25
Compression:
Stored size: 430 Bytes
Contents
# frozen_string_literal: true Sequel.migration do change do alter_table(:dynflow_steps) do add_column :class, String add_column :error, @db.database_type == :mysql ? :mediumtext : String # 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 :action_class, String add_column :children, String end end end
Version data entries
25 entries across 25 versions & 1 rubygems