mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 05:35:46 +08:00
13 lines
252 B
Ruby
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
|