Remove waiting_time from runner model

After removing the logic that stores the duration that has been
waited for a runner in the runner, this now also removes the column
from the database as it is not used anymore.
This commit is contained in:
Felix Auringer
2021-06-11 12:15:13 +02:00
committed by Sebastian Serth
parent d0d1b1bffd
commit b847daf823
3 changed files with 10 additions and 5 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class RemoveWaitingTimeFromRunners < ActiveRecord::Migration[6.1]
def change
remove_column :runners, :waiting_time
end
end

View File

@ -10,7 +10,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2021_06_02_071834) do ActiveRecord::Schema.define(version: 2021_06_11_101330) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "pg_trgm" enable_extension "pg_trgm"
@ -112,7 +112,7 @@ ActiveRecord::Schema.define(version: 2021_06_02_071834) do
t.integer "file_type_id" t.integer "file_type_id"
t.integer "memory_limit" t.integer "memory_limit"
t.boolean "network_enabled" t.boolean "network_enabled"
t.integer "cpu_limit" t.integer "cpu_limit", default: 20
end end
create_table "exercise_collection_items", id: :serial, force: :cascade do |t| create_table "exercise_collection_items", id: :serial, force: :cascade do |t|
@ -345,7 +345,6 @@ ActiveRecord::Schema.define(version: 2021_06_02_071834) do
t.bigint "execution_environment_id" t.bigint "execution_environment_id"
t.string "user_type" t.string "user_type"
t.bigint "user_id" t.bigint "user_id"
t.float "waiting_time"
t.datetime "created_at", precision: 6, null: false t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false
t.index ["execution_environment_id"], name: "index_runners_on_execution_environment_id" t.index ["execution_environment_id"], name: "index_runners_on_execution_environment_id"

View File

@ -3,9 +3,8 @@
# This factory does not request the runner management as the id is already provided. # This factory does not request the runner management as the id is already provided.
FactoryBot.define do FactoryBot.define do
factory :runner do factory :runner do
sequence(:runner_id) {|n| "test-runner-id-#{n}" } runner_id { SecureRandom.uuid }
association :execution_environment, factory: :ruby association :execution_environment, factory: :ruby
association :user, factory: :external_user association :user, factory: :external_user
waiting_time { 1.0 }
end end
end end