mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
14 lines
288 B
Ruby
14 lines
288 B
Ruby
|
class AddPublishedAtToProjects < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :projects, :published_at, :datetime
|
||
|
|
||
|
Project.find_each do |p|
|
||
|
p.update_columns(published_at: p.updated_at)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :projects, :published_at, :datetime
|
||
|
end
|
||
|
end
|