Use `text` columns rather than `string` in generated migration.
This commit is contained in:
parent
5ed4d5f163
commit
345f917d4a
|
@ -8,10 +8,10 @@ class CreateImpressionsTable < ActiveRecord::Migration
|
|||
t.string :action_name
|
||||
t.string :view_name
|
||||
t.string :request_hash
|
||||
t.string :session_hash
|
||||
t.string :ip_address
|
||||
t.string :message
|
||||
t.string :referrer
|
||||
t.text :session_hash
|
||||
t.text :message
|
||||
t.text :referrer
|
||||
t.timestamps
|
||||
end
|
||||
add_index :impressions, [:impressionable_type, :impressionable_id, :request_hash], :name => "poly_request_index", :unique => false
|
||||
|
|
Loading…
Reference in New Issue