7 lines
226 B
Ruby
7 lines
226 B
Ruby
class AddTimestampsToCustomEntity < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :custom_entities, :created_at, :datetime, null: false
|
|
add_column :custom_entities, :updated_at, :datetime, null: false
|
|
end
|
|
end
|