Index: flag.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flag/flag.install,v
retrieving revision 1.6
diff -u -p -r1.6 flag.install
--- flag.install	10 May 2010 20:48:16 -0000	1.6
+++ flag.install	11 Oct 2010 15:21:09 -0000
@@ -299,7 +299,7 @@ function flag_update_last_removed() {
  * Convert role access to have separate "flag" and "unflag" permissions.
  */
 function flag_update_6200() {
-  if (db_column_exists('flags', 'roles')) {
+  if (db_field_exists('flags', 'roles')) {
     $result = db_select('flags', 'f')
       ->fields('f')
       ->execute();
Index: flag_actions.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flag/flag_actions.install,v
retrieving revision 1.3
diff -u -p -r1.3 flag_actions.install
--- flag_actions.install	10 May 2010 04:05:00 -0000	1.3
+++ flag_actions.install	11 Oct 2010 15:27:20 -0000
@@ -81,7 +81,7 @@ function flag_actions_update_6200() {
   $ret = array();
 
   // Add the new repeat_threshold column.
-  if (!db_column_exists('flag_actions', 'repeat_threshold')) {
+  if (!db_field_exists('flag_actions', 'repeat_threshold')) {
     $column = array(
       'type' => 'int',
       'size' => 'small',
