summaryrefslogtreecommitdiffstats
path: root/db/migrate/017_create_settings.rb
blob: 777e36ed63ed9cabe48be10310278705e9105984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateSettings < ActiveRecord::Migration[4.2]
  def self.up
    create_table :settings, :force => true do |t|
      t.column "name", :string, :limit => 30, :default => "", :null => false
      t.column "value", :text
    end
  end

  def self.down
    drop_table :settings
  end
end