mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
194 B
Ruby
9 lines
194 B
Ruby
class AddStateToProject < ActiveRecord::Migration
|
|
def change
|
|
add_column :projects, :state, :string
|
|
Project.all.each do |p|
|
|
p.update_columns(state: 'published')
|
|
end
|
|
end
|
|
end
|