Changed instances to encounters
This commit is contained in:
12
app/imports/api/campaign/Encounter.js
Normal file
12
app/imports/api/campaign/Encounter.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import SimpleSchema from 'simpl-schema';
|
||||
import schema from '/imports/api/schema.js';
|
||||
|
||||
let Encounters = new Mongo.Collection("encounters");
|
||||
|
||||
let EncounterSchema = schema({
|
||||
//an encounter is a single flow of time all parties in an encounter are in-sync time wise
|
||||
});
|
||||
|
||||
Encounters.attachSchema(EncounterSchema);
|
||||
|
||||
export default Encounters;
|
||||
@@ -1,12 +0,0 @@
|
||||
import SimpleSchema from 'simpl-schema';
|
||||
import schema from '/imports/api/schema.js';
|
||||
|
||||
let Instances = new Mongo.Collection("instances");
|
||||
|
||||
let instanceSchema = schema({
|
||||
//an instance is a single flow of time all parties in an instance are in-sync time wise
|
||||
});
|
||||
|
||||
Instances.attachSchema(instanceSchema);
|
||||
|
||||
export default Instances;
|
||||
Reference in New Issue
Block a user