1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-07-27 20:19:39 +02:00
redmine/db/migrate/20120714122000_add_workflows_type.rb

10 satır
183 B
Ruby

class AddWorkflowsType < ActiveRecord::Migration[4.2]
def up
add_column :workflows, :type, :string, :limit => 30
end
def down
remove_column :workflows, :type
end
end