Commit 708ad3ec9fa9689d5f7d95aa9a6b9b58114f217d
1 parent
670277d2
Exists in
master
and in
28 other branches
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
db/schema.rb
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | # |
10 | 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 | 14 | create_table "article_versions", :force => true do |t| |
15 | 15 | t.integer "article_id" |
... | ... | @@ -88,13 +88,14 @@ ActiveRecord::Schema.define(:version => 38) do |
88 | 88 | create_table "categories", :force => true do |t| |
89 | 89 | t.string "name" |
90 | 90 | t.string "slug" |
91 | - t.text "path", :default => "" | |
91 | + t.text "path", :default => "" | |
92 | 92 | t.integer "display_color" |
93 | 93 | t.integer "environment_id" |
94 | 94 | t.integer "parent_id" |
95 | 95 | t.string "type" |
96 | 96 | t.float "lat" |
97 | 97 | t.float "lng" |
98 | + t.boolean "display_in_menu", :default => false | |
98 | 99 | end |
99 | 100 | |
100 | 101 | create_table "categories_profiles", :id => false, :force => true do |t| | ... | ... |