This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-23 09:50:53 -07:00
|
|
|
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
|