enable export to codeharbor
This commit is contained in:
5
db/migrate/20190830142809_add_uuid_to_exercise.rb
Normal file
5
db/migrate/20190830142809_add_uuid_to_exercise.rb
Normal file
@ -0,0 +1,5 @@
|
||||
class AddUuidToExercise < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :exercises, :uuid, :uuid
|
||||
end
|
||||
end
|
@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 2019_08_18_104954) do
|
||||
ActiveRecord::Schema.define(version: 2019_08_30_142809) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
@ -153,6 +153,7 @@ ActiveRecord::Schema.define(version: 2019_08_18_104954) do
|
||||
t.boolean "allow_file_creation"
|
||||
t.boolean "allow_auto_completion", default: false
|
||||
t.integer "expected_difficulty", default: 1
|
||||
t.uuid "uuid"
|
||||
t.index ["id"], name: "index_exercises_on_id"
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user