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

20130207104426_add_description_to_teams.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d03777901c44333ba34990af2ecef9a62977813 (plain)
1
2
3
4
5
class AddDescriptionToTeams < ActiveRecord::Migration
  def change
    add_column :user_teams, :description, :string, default: '', null: false
  end
end