Skip to content

Commit

Permalink
Fixed funcitons arity
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaranko committed Feb 25, 2013
1 parent f6e9091 commit 558d35d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/db_adapters/boss_db_adapter_mysql.erl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
-export([init/1, terminate/1, start/1, stop/0, find/2, find/7]).
-export([count/3, counter/2, incr/3, delete/2, save_record/2]).
-export([push/2, pop/2, dump/1, execute/2, transaction/2]).
-export([get_migrations_table/1, migration_done/3]).

start(_) ->
ok.
Expand Down
2 changes: 1 addition & 1 deletion src/db_adapters/boss_db_adapter_pgsql.erl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-export([init/1, terminate/1, start/1, stop/0, find/2, find/7]).
-export([count/3, counter/2, incr/3, delete/2, save_record/2]).
-export([push/2, pop/2, dump/1, execute/2, execute/3, transaction/2, create_table/3, table_exists/2]).
-export([get_migrations_table/1, migration_done/2]).
-export([get_migrations_table/1, migration_done/3]).

start(_) ->
ok.
Expand Down

0 comments on commit 558d35d

Please sign in to comment.