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

8 lines
175 B
Ruby

# frozen_string_literal: true
class AddHelpToExecutionEnvironments < ActiveRecord::Migration[4.2]
def change
add_column :execution_environments, :help, :text
end
end