metainfo.hrl 269 B

123456
  1. -ifndef(METAINFO_HRL).
  2. -define(METAINFO_HRL, true).
  3. -record(schema, {name,tables=[]}).
  4. -record(table, {name,container=false,type=set,fields=[],keys=[],
  5. copy_type=application:get_env(kvx,mnesia_media,disc_copies), instance={}, mappings =[] }).
  6. -endif.