Project

General

Profile

Download (232 Bytes) Statistics
| Branch: | Tag: | Revision:
class RemoveArchitectureDefault < ActiveRecord::Migration
def up
change_column :architectures, :name, :string, :default => nil
end

def down
change_column :architectures, :name, :string, :default => 'x86_64'
end
end
(216-216/286)