This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
redstoner.com/db/migrate/20150423221202_add_timestamps_to_info.rb
2015-04-24 00:43:29 +02:00

6 lines
164 B
Ruby

class AddTimestampsToInfo < ActiveRecord::Migration
def change
add_column :info, :created_at, :datetime
add_column :info, :updated_at, :datetime
end
end