14 lines
438 B
Ruby
14 lines
438 B
Ruby
|
class CreatePropositions < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :propositions do |t|
|
||
|
t.references :proposer, index: true
|
||
|
t.references :proposition_accepting, polymorphic: true
|
||
|
t.index [:proposition_accepting_id, :proposition_accepting_type], name: 'proposition_accepting_index'
|
||
|
t.references :proposable, polymorphic: true, index: true
|
||
|
t.integer :status
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|