Commit 6957802283fe2869ef74d61682dc18f89d111207

Authored by AntonioTerceiro
1 parent dc100197

ActionItem14: active now defaults to true



git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@670 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
db/migrate/003_create_profiles.rb
... ... @@ -5,7 +5,9 @@ class CreateProfiles < ActiveRecord::Migration
5 5 t.column :type, :string
6 6 t.column :identifier, :string
7 7 t.column :environment_id, :integer
8   - t.column :active, :boolean, :default => false
  8 +
  9 +
  10 + t.column :active, :boolean, :default => true
9 11 t.column :address, :string
10 12 t.column :contact_phone, :string
11 13  
... ...