mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 05:35:46 +08:00
12 lines
242 B
Ruby
12 lines
242 B
Ruby
class CreateStoppedSponsorships < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :stopped_sponsorships do |t|
|
|
t.integer :amount
|
|
t.integer :sponsor_id
|
|
t.integer :developer_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|