custom_tables/db/migrate/20170827111550_add_timestamps_to_custom_entity.rb

7 lines
226 B
Ruby
Raw Normal View History

class AddTimestampsToCustomEntity < ActiveRecord::Migration[4.2]
2018-02-09 17:31:28 +01:00
def change
add_column :custom_entities, :created_at, :datetime, null: false
add_column :custom_entities, :updated_at, :datetime, null: false
end
end