Skip to content

Commit

Permalink
Added rake task to make pages and networks public by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Turner committed Mar 21, 2010
1 parent 678e3b3 commit 0998dd6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -565,14 +565,14 @@
t.integer "wiki_id", :limit => 11
t.integer "photo_id", :limit => 11
t.integer "layout_id", :limit => 11
t.boolean "may_see", :default => true
t.boolean "may_see_committees"
t.boolean "may_see_networks"
t.boolean "may_see_members"
t.boolean "may_request_membership"
t.boolean "may_see", :default => true
t.boolean "may_see_committees", :default => true
t.boolean "may_see_networks", :default => true
t.boolean "may_see_members", :default => true
t.boolean "may_request_membership", :default => true
t.integer "membership_policy", :limit => 11, :default => 0
t.boolean "may_see_groups"
t.boolean "may_see_contacts"
t.boolean "may_see_groups", :default => true
t.boolean "may_see_contacts", :default => true
t.boolean "may_request_contact", :default => true
t.boolean "may_pester", :default => true
t.boolean "may_burden"
Expand Down Expand Up @@ -759,7 +759,7 @@
end

create_table "tasks", :force => true do |t|
t.integer "task_list_id", :limit => 11
t.integer "task_list_id", :limited => 11
t.string "name"
t.text "description", :limit => 16777215
t.text "description_html", :limit => 16777215
Expand Down

0 comments on commit 0998dd6

Please sign in to comment.