mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
6 lines
167 B
Ruby
6 lines
167 B
Ruby
class AddDatesToUser < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :users, :created_at, :datetime
|
|
add_column :users, :updated_at, :datetime
|
|
end
|
|
end
|