12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
|
|
let Instances = new Mongo.Collection("instances");
|
|
|
|
let instanceSchema = new SimpleSchema({
|
|
//an instance is a single flow of time all parties in an instance are in-sync time wise
|
|
});
|
|
|
|
Instances.attachSchema(instanceSchema);
|
|
|
|
export default Instances;
|