metainfo.hrl 169 B

1234567
  1. -ifndef(METAINFO_HRL).
  2. -define(METAINFO_HRL, true).
  3. -record(schema,{name,tables=[]}).
  4. -record(table,{name,container,fields=[],keys=[],copy_type=disc_copies}).
  5. -endif.