-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmnesia.backup
29 lines (29 loc) · 1.36 KB
/
mnesia.backup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{tables,[{'_ids_',[{record_name,'_ids_'},{attributes,[type,id]}]},
{dish,[{record_name,dish},
{attributes,[id,title,details,vegetarian]}]},
{booking,[{record_name,booking},
{attributes,[id,date,vegetarian,eater_id,menu_id]}]},
{menu,[{record_name,menu},{attributes,[id,date,dish_id,slots]}]},
{eater,[{record_name,eater},
{attributes,[id,account,password_hash,forename,name,intern,
price_to_pay,admin,mail]}]}]}.
{'_ids_',dish,6}.
{'_ids_',booking,5}.
{'_ids_',menu,6}.
{'_ids_',eater,2}.
{dish,"dish-4","Currywurst",
[109,105,116,32,80,111,109,109,101,115,32,114,111,116,47,119,101,105,
195,159],
false}.
{dish,"dish-1","Currywurst","mit Pommes",false}.
{dish,"dish-3","Currywurst","mit Pommes und Mayo",false}.
{dish,"dish-6","asda","adsada",false}.
{dish,"dish-5","adasd","adasda",false}.
{booking,"booking-2",{{2012,9,9},{17,53,48}},false,"eater-2","menu-2"}.
{menu,"menu-6",{{2012,9,10},{0,0,0}},"dish-6","1"}.
{menu,"menu-4",{{2012,9,9},{0,0,0}},"dish-4","10"}.
{menu,"menu-5",{{2012,9,8},{0,0,0}},"dish-5","1"}.
{eater,"eater-2","ua","598f04fd6e3586a93d27aa1ddcf5f2e6","Ulf","Angermann",
true,5,false,"[email protected]"}.
{eater,"eater-1","aa","ce9ba51802f7f6daa5d81d1a58d4a911","Anja","Angermann",
true,5,true,"[email protected]"}.