6 lines
144 B
Ruby
6 lines
144 B
Ruby
class AddHelpToExecutionEnvironments < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :execution_environments, :help, :text
|
|
end
|
|
end
|