mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
f7301bd5b9
* Add overview of active sessions * Better display of browser/platform name * Improve how browser information is stored and displayed for sessions overview * Fix test
8 lines
297 B
Ruby
8 lines
297 B
Ruby
class AddDescriptionToSessionActivations < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :session_activations, :user_agent, :string, null: false, default: ''
|
|
add_column :session_activations, :ip, :inet
|
|
add_foreign_key :session_activations, :users, on_delete: :cascade
|
|
end
|
|
end
|