From 7e3c7bc47f51d046f45109ba41e2086e535fa558 Mon Sep 17 00:00:00 2001 From: AntonioTerceiro Date: Thu, 21 Feb 2008 18:35:09 +0000 Subject: [PATCH] ActionItem36: adding a group column to friendships so users can classify their friends --- db/migrate/022_add_friendship_fields.rb | 9 +++++++++ 1 file changed, 9 insertions(+), 0 deletions(-) create mode 100644 db/migrate/022_add_friendship_fields.rb diff --git a/db/migrate/022_add_friendship_fields.rb b/db/migrate/022_add_friendship_fields.rb new file mode 100644 index 0000000..b9bd9e1 --- /dev/null +++ b/db/migrate/022_add_friendship_fields.rb @@ -0,0 +1,9 @@ +class AddFriendshipFields < ActiveRecord::Migration + def self.up + # users must be able to classify their friends + add_column :friendships, :group, :string + end + + def self.down + end +end -- libgit2 0.21.2