mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
11 lines
229 B
Ruby
11 lines
229 B
Ruby
# frozen_string_literal:true
|
|
|
|
class AddStateToProject < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :projects, :state, :string
|
|
Project.all.each do |p|
|
|
p.update_columns(state: 'published')
|
|
end
|
|
end
|
|
end
|