preparations to replace session with lti_parameters object

This commit is contained in:
Tom Staubitz
2016-12-27 00:13:41 +01:00
parent 2b55e0081c
commit f4c01879bf
12 changed files with 23 additions and 27 deletions

View File

@ -0,0 +1,12 @@
class CreateLtiParameters < ActiveRecord::Migration
def change
create_table :lti_parameters do |t|
t.string :external_user_id
t.belongs_to :consumers
t.belongs_to :exercises
t.column :lti_parameters, :jsonb
t.timestamps
end
end
end