mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
7 lines
170 B
Ruby
7 lines
170 B
Ruby
class AddProfileFieldsToUsers < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :users, :username, :string
|
|
add_column :users, :avatar_url, :string
|
|
end
|
|
end
|