X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22..d17ecc9b83c13912019336c0045aadb807143eb0:/db/migrate/20120328090602_drop_session_table.rb diff --git a/db/migrate/20120328090602_drop_session_table.rb b/db/migrate/20120328090602_drop_session_table.rb index e5f9739a5..0ffcb899b 100644 --- a/db/migrate/20120328090602_drop_session_table.rb +++ b/db/migrate/20120328090602_drop_session_table.rb @@ -1,4 +1,4 @@ -require 'migrate' +require "migrate" class DropSessionTable < ActiveRecord::Migration def up @@ -6,7 +6,7 @@ class DropSessionTable < ActiveRecord::Migration end def down - create_table "sessions", :options => innodb_option do |t| + create_table "sessions" do |t| t.column "session_id", :string t.column "data", :text t.column "created_at", :timestamp