fixing tests p1

This commit is contained in:
Tom Staubitz
2017-01-12 18:12:36 +01:00
parent e4daa7ece3
commit 5fe12bfa78
11 changed files with 41 additions and 135 deletions

View File

@ -0,0 +1,11 @@
class CreateLtiParameters < ActiveRecord::Migration
def change
create_table :lti_parameters do |t|
t.belongs_to :external_users
t.belongs_to :consumers
t.belongs_to :exercises
t.jsonb :lti_parameters, null: false, default: '{}'
t.timestamps
end
end
end