diff --git a/sites/all/modules/contrib/user_relationships/user_relationships.install b/sites/all/modules/contrib/user_relationships/user_relationships.install index df435cc..53783a9 100644 --- a/sites/all/modules/contrib/user_relationships/user_relationships.install +++ b/sites/all/modules/contrib/user_relationships/user_relationships.install @@ -106,18 +106,18 @@ function user_relationships_update_7002() { * Change column names from created_at and updated_at to created and changed. */ function user_relationships_update_7003() { - db_change_field( - 'user_relationships', - 'created_at', - 'created', - array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0) - ); - db_change_field( - 'user_relationships', - 'updated_at', - 'changed', - array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0) - ); + db_change_field('user_relationships', 'created_at', 'created', array( + 'type' => 'int', + 'unsigned' => TRUE, + 'not null' => TRUE, + 'default' => 0 + )); + db_change_field('user_relationships', 'updated_at', 'changed', array( + 'type' => 'int', + 'unsigned' => TRUE, + 'not null' => TRUE, + 'default' => 0 + )); } /**