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

20150729145246_create_application_settings.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4623345df9bc6f9d084542fb7f372e2437ca8c6d (plain)
1
2
3
4
5
6
7
8
9
10
class CreateApplicationSettings < ActiveRecord::Migration
  def change
    create_table :application_settings do |t|
      t.boolean :all_broken_builds
      t.boolean :add_pusher

      t.timestamps
    end
  end
end