Files
gitlink-forgeplus/db/migrate/20200724090750_create_sponsorships.rb
2020-07-24 17:21:16 +08:00

13 lines
252 B
Ruby

class CreateSponsorships < ActiveRecord::Migration[5.2]
def change
create_table :sponsorships do |t|
t.integer :amount
t.integer :visible
t.integer :sponsor_id
t.integer :developer_id
t.timestamps
end
end
end