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