mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-13 08:15:55 +08:00
11 lines
185 B
Ruby
11 lines
185 B
Ruby
class CreateWallets < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :wallets do |t|
|
|
t.integer :balance
|
|
t.integer :user_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|