rosa-build/db/migrate/20140113215223_add_architec...

6 lines
184 B
Ruby
Raw Normal View History

class AddArchitectureDependentToProject < ActiveRecord::Migration
def change
add_column :projects, :architecture_dependent, :boolean, :default => false, :null => false
end
end