summaryrefslogtreecommitdiff
path: root/db/migrate/20120215182305_create_protected_branches.rb
blob: 841d08c33d5f135b0463541909a85e3d11e162e3 (plain)
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