Skip to content

Commit

Permalink
Use session_id instead of deprecated sessid
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2221 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Sep 12, 2005
1 parent 0d97f05 commit c259ed9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,5 @@ def delete
end
end
end

end
end
2 changes: 1 addition & 1 deletion railties/lib/tasks/databases.rake
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ task :create_sessions_table => :environment do
raise "Task unavailable to this database (no migration support)" unless ActiveRecord::Base.connection.supports_migrations?

ActiveRecord::Base.connection.create_table :sessions do |t|
t.column :sessid, :string
t.column :session_id, :string
t.column :data, :text
t.column :updated_at, :datetime
end
Expand Down

0 comments on commit c259ed9

Please sign in to comment.