schema.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:7k
源码类别:

Ajax

开发平台:

Others

  1. # This file is auto-generated from the current state of the database. Instead of editing this file, 
  2. # please use the migrations feature of Active Record to incrementally modify your database, and
  3. # then regenerate this schema definition.
  4. #
  5. # Note that this schema.rb definition is the authoritative source for your database schema. If you need
  6. # to create the application database on another system, you should be using db:schema:load, not running
  7. # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
  8. # you'll amass, the slower it'll run and the greater likelihood for issues).
  9. #
  10. # It's strongly recommended to check this file into your version control system.
  11. ActiveRecord::Schema.define(:version => 88) do
  12.   create_table "articles_tags", :id => false, :force => true do |t|
  13.     t.integer "article_id"
  14.     t.integer "tag_id"
  15.   end
  16.   create_table "blogs", :force => true do |t|
  17.     t.text   "settings"
  18.     t.string "base_url"
  19.   end
  20.   create_table "cache_informations", :force => true do |t|
  21.     t.string   "path"
  22.     t.datetime "created_at"
  23.     t.datetime "updated_at"
  24.   end
  25.   add_index "cache_informations", ["path"], :name => "index_cache_informations_on_path"
  26.   create_table "categories", :force => true do |t|
  27.     t.string  "name"
  28.     t.integer "position",    :default => 0, :null => false
  29.     t.string  "permalink"
  30.     t.text    "keywords"
  31.     t.text    "description"
  32.     t.integer "parent_id"
  33.   end
  34.   add_index "categories", ["permalink"], :name => "categories_permalink_index"
  35.   create_table "categorizations", :force => true do |t|
  36.     t.integer "article_id"
  37.     t.integer "category_id"
  38.     t.boolean "is_primary"
  39.   end
  40.   create_table "contents", :force => true do |t|
  41.     t.string   "type"
  42.     t.string   "title"
  43.     t.string   "author"
  44.     t.text     "body"
  45.     t.text     "extended"
  46.     t.text     "excerpt"
  47.     t.string   "keywords"
  48.     t.datetime "created_at"
  49.     t.datetime "updated_at"
  50.     t.integer  "user_id"
  51.     t.string   "permalink"
  52.     t.string   "guid"
  53.     t.integer  "text_filter_id"
  54.     t.text     "whiteboard"
  55.     t.string   "name"
  56.     t.boolean  "published",      :default => false
  57.     t.boolean  "allow_pings"
  58.     t.boolean  "allow_comments"
  59.     t.datetime "published_at"
  60.     t.string   "state"
  61.     t.integer  "parent_id"
  62.   end
  63.   add_index "contents", ["published"], :name => "contents_published_index"
  64.   add_index "contents", ["text_filter_id"], :name => "contents_text_filter_id_index"
  65.   create_table "feedback", :force => true do |t|
  66.     t.string   "type"
  67.     t.string   "title"
  68.     t.string   "author"
  69.     t.text     "body"
  70.     t.text     "excerpt"
  71.     t.datetime "created_at"
  72.     t.datetime "updated_at"
  73.     t.integer  "user_id"
  74.     t.string   "guid"
  75.     t.integer  "text_filter_id"
  76.     t.text     "whiteboard"
  77.     t.integer  "article_id"
  78.     t.string   "email"
  79.     t.string   "url"
  80.     t.string   "ip",               :limit => 40
  81.     t.string   "blog_name"
  82.     t.boolean  "published",                      :default => false
  83.     t.datetime "published_at"
  84.     t.string   "state"
  85.     t.boolean  "status_confirmed"
  86.   end
  87.   add_index "feedback", ["article_id"], :name => "feedback_article_id_index"
  88.   add_index "feedback", ["text_filter_id"], :name => "feedback_text_filter_id_index"
  89.   create_table "notifications", :force => true do |t|
  90.     t.integer  "content_id"
  91.     t.integer  "user_id"
  92.     t.datetime "created_at"
  93.     t.datetime "updated_at"
  94.   end
  95.   create_table "page_caches", :force => true do |t|
  96.     t.string "name", :null => false
  97.   end
  98.   add_index "page_caches", ["name"], :name => "name"
  99.   create_table "pings", :force => true do |t|
  100.     t.integer  "article_id"
  101.     t.string   "url"
  102.     t.datetime "created_at"
  103.   end
  104.   add_index "pings", ["article_id"], :name => "article_id"
  105.   create_table "profiles", :force => true do |t|
  106.     t.string "label"
  107.     t.string "nicename"
  108.     t.text   "modules"
  109.   end
  110.   create_table "profiles_rights", :force => true do |t|
  111.     t.integer "profile_id"
  112.     t.integer "right_id"
  113.   end
  114.   create_table "redirects", :force => true do |t|
  115.     t.string "from_path"
  116.     t.string "to_path"
  117.   end
  118.   create_table "resources", :force => true do |t|
  119.     t.integer  "size"
  120.     t.string   "filename"
  121.     t.string   "mime"
  122.     t.datetime "created_at"
  123.     t.datetime "updated_at"
  124.     t.integer  "article_id"
  125.     t.boolean  "itunes_metadata"
  126.     t.string   "itunes_author"
  127.     t.string   "itunes_subtitle"
  128.     t.integer  "itunes_duration"
  129.     t.text     "itunes_summary"
  130.     t.string   "itunes_keywords"
  131.     t.string   "itunes_category"
  132.     t.boolean  "itunes_explicit"
  133.   end
  134.   create_table "rights", :force => true do |t|
  135.     t.string "name"
  136.     t.string "description"
  137.   end
  138.   create_table "sidebars", :force => true do |t|
  139.     t.integer  "active_position"
  140.     t.text     "config"
  141.     t.integer  "staged_position"
  142.     t.datetime "updated_at"
  143.     t.string   "type"
  144.   end
  145.   create_table "sitealizer", :force => true do |t|
  146.     t.string   "path"
  147.     t.string   "ip"
  148.     t.string   "referer"
  149.     t.string   "language"
  150.     t.string   "user_agent"
  151.     t.datetime "created_at"
  152.     t.date     "created_on"
  153.   end
  154.   create_table "tags", :force => true do |t|
  155.     t.string   "name"
  156.     t.datetime "created_at"
  157.     t.datetime "updated_at"
  158.     t.string   "display_name"
  159.   end
  160.   create_table "text_filters", :force => true do |t|
  161.     t.string "name"
  162.     t.string "description"
  163.     t.string "markup"
  164.     t.text   "filters"
  165.     t.text   "params"
  166.   end
  167.   create_table "text_link_ads_rss", :force => true do |t|
  168.     t.string  "html",    :limit => 1024
  169.     t.integer "post_id"
  170.   end
  171.   create_table "triggers", :force => true do |t|
  172.     t.integer  "pending_item_id"
  173.     t.string   "pending_item_type"
  174.     t.datetime "due_at"
  175.     t.string   "trigger_method"
  176.   end
  177.   create_table "users", :force => true do |t|
  178.     t.string   "login",                     :limit => 80
  179.     t.string   "password",                  :limit => 40
  180.     t.string   "name",                      :limit => 80
  181.     t.string   "email",                     :limit => 80
  182.     t.boolean  "notify_via_email"
  183.     t.boolean  "notify_on_new_articles"
  184.     t.boolean  "notify_on_comments"
  185.     t.boolean  "notify_watch_my_articles"
  186.     t.string   "jabber"
  187.     t.integer  "profile_id"
  188.     t.string   "remember_token"
  189.     t.datetime "remember_token_expires_at"
  190.     t.string   "text_filter_id",                          :default => "1"
  191.     t.string   "editor",                                  :default => "simple"
  192.     t.string   "state",                                   :default => "active"
  193.     t.string   "firstname"
  194.     t.string   "lastname"
  195.     t.string   "nickname"
  196.     t.string   "url"
  197.     t.string   "msn"
  198.     t.string   "aim"
  199.     t.string   "yahoo"
  200.     t.string   "twitter"
  201.     t.text     "description"
  202.     t.boolean  "show_url"
  203.     t.boolean  "show_msn"
  204.     t.boolean  "show_aim"
  205.     t.boolean  "show_yahoo"
  206.     t.boolean  "show_twitter"
  207.     t.boolean  "show_jabber"
  208.     t.datetime "last_connection"
  209.   end
  210.   add_index "users", ["login"], :name => "login", :unique => true
  211. end