Files
x-stake/db/migrate/20210818185019_add_wallet_address_to_user.rb
2021-08-18 15:58:04 -03:00

7 lines
162 B
Ruby

# frozen_string_literal: true
class AddWalletAddressToUser < ActiveRecord::Migration[6.1]
def change
add_column(:users, :wallet_address, :string)
end
end