Commit 708ad3ec9fa9689d5f7d95aa9a6b9b58114f217d

Authored by AntonioTerceiro
1 parent 670277d2

ActionItem392: updating db schema


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1970 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 # 9 #
10 # It's strongly recommended to check this file into your version control system. 10 # It's strongly recommended to check this file into your version control system.
11 11
12 -ActiveRecord::Schema.define(:version => 38) do 12 +ActiveRecord::Schema.define(:version => 39) do
13 13
14 create_table "article_versions", :force => true do |t| 14 create_table "article_versions", :force => true do |t|
15 t.integer "article_id" 15 t.integer "article_id"
@@ -88,13 +88,14 @@ ActiveRecord::Schema.define(:version => 38) do @@ -88,13 +88,14 @@ ActiveRecord::Schema.define(:version => 38) do
88 create_table "categories", :force => true do |t| 88 create_table "categories", :force => true do |t|
89 t.string "name" 89 t.string "name"
90 t.string "slug" 90 t.string "slug"
91 - t.text "path", :default => "" 91 + t.text "path", :default => ""
92 t.integer "display_color" 92 t.integer "display_color"
93 t.integer "environment_id" 93 t.integer "environment_id"
94 t.integer "parent_id" 94 t.integer "parent_id"
95 t.string "type" 95 t.string "type"
96 t.float "lat" 96 t.float "lat"
97 t.float "lng" 97 t.float "lng"
  98 + t.boolean "display_in_menu", :default => false
98 end 99 end
99 100
100 create_table "categories_profiles", :id => false, :force => true do |t| 101 create_table "categories_profiles", :id => false, :force => true do |t|