20120215182305_create_protected_branches.rb 232 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 class CreateProtectedBranches < ActiveRecord::Migration def change create_table :protected_branches do |t| t.integer :project_id, :null => false t.string :name, :null => false t.timestamps end end end