mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
5 lines
114 B
Ruby
5 lines
114 B
Ruby
class AddEmailToUser < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :users, :email, :string
|
|
end
|
|
end
|