summaryrefslogtreecommitdiff
path: root/db/migrate/017_create_settings.rb
blob: 99f96adf842a9e68427857d07e9c91e7f8d75553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateSettings < ActiveRecord::Migration
  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