db_table.erl 303 B

1234567891011
  1. -module(db_table).
  2. -include_lib("kvs/include/metainfo.hrl").
  3. -include_lib("db/include/table.hrl").
  4. -compile(export_all).
  5. metainfo() ->
  6. #schema{name = kvs, tables =
  7. [
  8. #table{name = game_table, fields=record_info(fields, game_table)}
  9. ]
  10. }.