8 lines
175 B
Ruby
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
|