Commit 7e3c7bc47f51d046f45109ba41e2086e535fa558

Authored by AntonioTerceiro
1 parent b1846759

ActionItem36: adding a group column to friendships so users can classify their friends


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1461 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
db/migrate/022_add_friendship_fields.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddFriendshipFields < ActiveRecord::Migration
  2 + def self.up
  3 + # users must be able to classify their friends
  4 + add_column :friendships, :group, :string
  5 + end
  6 +
  7 + def self.down
  8 + end
  9 +end
... ...