13 lines
295 B
Erlang
13 lines
295 B
Erlang
|
-module(ts_user).
|
||
|
-export([]).
|
||
|
|
||
|
-include("ts_db_records.hrl").
|
||
|
-include_lib("stdlib/include/qlc.hrl").
|
||
|
|
||
|
create_table(TableOpts) ->
|
||
|
mnesia:create_table(ts_user,
|
||
|
TableOpts ++ [{attributes, record_info(fields, ts_user)},
|
||
|
{type, ordered_set}]).
|
||
|
|
||
|
%new(TR = #ts_user
|