mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
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
|