6 lines
122 B
Ruby
6 lines
122 B
Ruby
|
class AddCreatedAtToCerfa < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :cerfas, :created_at, :datetime
|
||
|
end
|
||
|
end
|