Renamed parameter

This commit is contained in:
Alexey Romanov
2010-11-18 15:05:48 +03:00
parent e8d5086405
commit 10040804a7

View File

@@ -168,8 +168,8 @@ sql_exec(Db, SQL) ->
%% @end %% @end
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
-spec create_table(atom(), [{atom(), atom()}]) -> any(). -spec create_table(atom(), [{atom(), atom()}]) -> any().
create_table(Tbl, Options) -> create_table(Tbl, Columns) ->
create_table(?MODULE, Tbl, Options). create_table(?MODULE, Tbl, Columns).
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
%% @spec create_table(Db :: atom(), Tbl :: atom(), Columns) -> any() %% @spec create_table(Db :: atom(), Tbl :: atom(), Columns) -> any()