mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
6 lines
114 B
Ruby
6 lines
114 B
Ruby
|
|
class AddEmailToUser < ActiveRecord::Migration[5.2]
|
||
|
|
def change
|
||
|
|
add_column :users, :email, :string
|
||
|
|
end
|
||
|
|
end
|