2015-10-27 23:19:30 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
|
|
|
|
2015-10-07 23:20:05 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-02-15 23:03:16 +00:00
|
|
|
import Realm from 'realm';
|
2015-10-07 23:20:05 +00:00
|
|
|
|
2016-02-15 23:03:16 +00:00
|
|
|
export default new Realm({
|
2015-10-07 23:20:05 +00:00
|
|
|
schema: [
|
|
|
|
{
|
|
|
|
name: 'Todo',
|
2015-11-03 07:05:06 +00:00
|
|
|
properties: {
|
|
|
|
done: {type: Realm.Types.BOOL, default: false},
|
|
|
|
text: Realm.Types.STRING,
|
|
|
|
},
|
2015-10-07 23:20:05 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'TodoList',
|
2015-11-03 07:05:06 +00:00
|
|
|
properties: {
|
|
|
|
name: Realm.Types.STRING,
|
|
|
|
items: {type: Realm.Types.LIST, objectType: 'Todo', default: []},
|
|
|
|
},
|
2015-10-07 23:20:05 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|