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