custom_tables/db/migrate/20170827111550_add_timestamps_to_custom_entity.rb

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