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

20121219183753_create_user_teams.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65c4d053982cadce45061357bc18b95c89dbf541 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateUserTeams < ActiveRecord::Migration
  def change
    create_table :user_teams do |t|
      t.string :name
      t.string :path
      t.integer :owner_id

      t.timestamps
    end
  end
end