aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20160101060555_add_command_line_to_compilers.rb
blob: 215855d2347fd116422c34ccd859e23710e70ff1 (plain)
1
2
3
4
5
class AddCommandLineToCompilers < ActiveRecord::Migration[5.0]
  def change
    add_column :compilers, :command_line, :string, null: false
  end
end