Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20120215182305_create_protected_branches.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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