Browse Source

fix typo in filename

Roman Dayneko 11 years ago
parent
commit
85cfc5bf66
1 changed files with 12 additions and 0 deletions
  1. 12 0
      apps/db/src/db_table.erl

+ 12 - 0
apps/db/src/db_table.erl

@@ -0,0 +1,12 @@
+-module(db_table).
+-include_lib("kvs/include/metainfo.hrl").
+-include_lib("db/include/table.hrl").
+-compile(export_all).
+
+metainfo() ->
+    #schema{name = kvs, tables = 
+                [
+                 #table{name = game_table, fields=record_info(fields, game_table)},
+                 #table{name = save_game_table, fields=record_info(fields, save_game_table)}
+                ]
+           }.