Files
codeocean/db/migrate/20170202170437_create_remote_evaluation_mappings.rb
2021-05-14 22:03:06 +02:00

14 lines
394 B
Ruby

# frozen_string_literal: true
class CreateRemoteEvaluationMappings < ActiveRecord::Migration[4.2]
def change
create_table :remote_evaluation_mappings do |t|
t.integer 'user_id', null: false
t.integer 'exercise_id', null: false
t.string 'validation_token', null: false
t.datetime 'created_at'
t.datetime 'updated_at'
end
end
end