diff --git a/pmorganization/pmorganization.install b/pmorganization/pmorganization.install
index 76f77ed..30a6986 100644
--- a/pmorganization/pmorganization.install
+++ b/pmorganization/pmorganization.install
@@ -305,8 +305,6 @@ function pmorganization_schema() {
     'fields'        => array(
       'vid'         => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
       'nid'         => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
-      'prefix'      => array('type' => 'varchar', 'length' => 100),
-      'fullname'    => array('type' => 'varchar', 'length' => 100),
       'country'     => array('type' => 'varchar', 'length' => 100),
       'orglanguage' => array('type' => 'varchar', 'length' => 100),
       'provstate'   => array('type' => 'varchar', 'length' => 50),
@@ -349,3 +347,11 @@ function pmorganization_update_7100() {
 
   return 'Added D7 style body field to Project Management Organization nodes';
 }
+
+/**
+ * Removes fullname and prefix fields, which have been deprecated since 6.x-2.x
+ */
+function pmorganization_update_7101() {
+  db_drop_field('pmorganization', 'fullname');
+  db_drop_field('pmorganization', 'prefix');
+}
