您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

017_create_settings.rb 289B

123456789101112
  1. class CreateSettings < ActiveRecord::Migration[4.2]
  2. def self.up
  3. create_table :settings, :force => true do |t|
  4. t.column "name", :string, :limit => 30, :default => "", :null => false
  5. t.column "value", :text
  6. end
  7. end
  8. def self.down
  9. drop_table :settings
  10. end
  11. end