15 lines
430 B
Ruby
15 lines
430 B
Ruby
|
class CreateFeedbacks < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :feedbacks do |t|
|
||
|
t.references :feedback_receiving, index: {name: :feedbacks_polymorphic_index}, polymorphic: true, null: false
|
||
|
t.string :author_email
|
||
|
t.integer :rating, null: false
|
||
|
t.text :comment, null: false
|
||
|
t.string :ip_address
|
||
|
t.string :session_id, index: true
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|