summaryrefslogtreecommitdiff
path: root/db/migrate/20150729145246_create_application_settings.rb
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