From: Brian West Date: Mon, 8 Sep 2008 20:35:17 +0000 (+0000) Subject: fix function to be in the proper locaiton X-Git-Tag: v1.0.2~1276 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=243d0e1d1274c2fa866461d0a9828a7c8aa69fab;p=thirdparty%2Ffreeswitch.git fix function to be in the proper locaiton git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9483 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_core_sqldb.c b/src/switch_core_sqldb.c index e59ea53682..3b9a510d7f 100644 --- a/src/switch_core_sqldb.c +++ b/src/switch_core_sqldb.c @@ -430,9 +430,9 @@ void switch_core_sqldb_start(switch_memory_pool_t *pool) ");\n"; char create_calls_sql[] = "CREATE TABLE calls (\n" - " function VARCHAR(255),\n" " created VARCHAR(255),\n" " created_epoch INTEGER,\n" + " function VARCHAR(255),\n" " caller_cid_name VARCHAR(255),\n" " caller_cid_num VARCHAR(255),\n" " caller_dest_num VARCHAR(255),\n"