Sha256: 6c5f4ea35b55b38fa7987a9a56a9878a0e59368e123f683e2b3139b898785feb
Contents?: true
Size: 783 Bytes
Versions: 28
Compression:
Stored size: 783 Bytes
Contents
class RemoveUnusedFieldsFromProjects < ActiveRecord::Migration def up remove_column :projects, :kanban_field remove_column :projects, :development_id remove_column :projects, :testing_id remove_column :projects, :production_id remove_column :projects, :assign_health_query remove_column :projects, :new_tickets_query remove_column :projects, :git_last_sync_at end def down add_column :projects, :kanban_field, :string add_column :projects, :development_id, :integer add_column :projects, :testing_id, :integer add_column :projects, :production_id, :integer add_column :projects, :assign_health_query, :string add_column :projects, :new_tickets_query, :string add_column :projects, :git_last_sync_at, :datetime end end
Version data entries
28 entries across 28 versions & 1 rubygems