mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
2211e8d1cd
* feat: Revocable sessions * fix: Tests using sign_in * feat: Configuration entry for the maximum number of session activations
14 lines
346 B
Ruby
14 lines
346 B
Ruby
class CreateSessionActivations < ActiveRecord::Migration[5.1]
|
|
def change
|
|
create_table :session_activations do |t|
|
|
t.integer :user_id, null: false
|
|
t.string :session_id, null: false
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :session_activations, :user_id
|
|
add_index :session_activations, :session_id, unique: true
|
|
end
|
|
end
|