2013-08-27 18:07:13 +00:00
|
|
|
# LoopBack Definition Language Guide
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
LoopBack Definition Language (LDL) is simple DSL to define data models in
|
|
|
|
JavaScript or plain JSON. With LoopBack, we often start with a model definition
|
|
|
|
which describes the structure and types of data. The model establishes common
|
|
|
|
knowledge of data in LoopBack.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
## Describing a simple model
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
Let's start with a simple example in plain JSON.
|
|
|
|
|
|
|
|
{
|
|
|
|
"id": "number",
|
|
|
|
"firstName": "string",
|
|
|
|
"lastName": "string"
|
|
|
|
}
|
|
|
|
|
|
|
|
The model simply defines a `user` model that consists of three properties:
|
|
|
|
|
|
|
|
* id - The user id. It's a number.
|
|
|
|
* firstName - The first name. It's a string.
|
|
|
|
* lastName - The last name. It's a string.
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
Each key in the JSON object defines a property in our model which will be cast
|
|
|
|
to its associated type. The simplest form of a property definition is
|
|
|
|
`propertyName: type`. The key is the name of the property and the value is the
|
|
|
|
type of the property. We'll cover more advanced form later in this guide.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
LDL supports a list of built-in types, including the basic types from JSON:
|
|
|
|
|
|
|
|
* String
|
|
|
|
* Number
|
|
|
|
* Boolean
|
|
|
|
* Array
|
|
|
|
* Object
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
**Note**: The type name is case-insensitive, i.e., either "Number" or "number"
|
|
|
|
can be used.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
The same model can also be described in JavaScript code:
|
|
|
|
|
|
|
|
var UserDefinition = {
|
|
|
|
id: Number,
|
|
|
|
firstName: String,
|
|
|
|
lastName: String
|
|
|
|
}
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
As we can see, the JavaScript version is less verbose as it doesn't require
|
|
|
|
quotes for property names. The types are described using JavaScript constructors,
|
|
|
|
for example, `Number` for `"Number"`. String literals are also supported.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
Now we have the definition of a model, how do we use it in LoopBack Node.js
|
|
|
|
code? It's easy, LoopBack will build a JavaScript constructor (or class) for you.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
## Creating a model constructor
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
LDL compiles the model definition into a JavaScript constructor using
|
|
|
|
`ModelBuilder.define` APIs. ModelBuilder is the basic factory to create model
|
|
|
|
constructors.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
ModelBuilder.define() method takes the following arguments:
|
|
|
|
|
|
|
|
- name: The model name
|
|
|
|
- properties: An object of property definitions
|
|
|
|
- options: An object of options, optional
|
|
|
|
|
2013-08-16 19:13:25 +00:00
|
|
|
Here is an example,
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
var ModelBuilder = require('loopback-datasource-juggler').ModelBuilder;
|
|
|
|
|
|
|
|
// Create an instance of the ModelBuilder
|
|
|
|
var modelBuilder = new ModelBuilder();
|
|
|
|
|
|
|
|
// Describe the user model
|
|
|
|
var UserDefinition = {
|
|
|
|
id: Number,
|
|
|
|
firstName: String,
|
|
|
|
lastName: String
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compile the user model definition into a JavaScript constructor
|
|
|
|
var User = modelBuilder.define('User', UserDefinition);
|
|
|
|
|
|
|
|
// Create a new instance of User
|
|
|
|
var user = new User({id: 1, firstName: 'John', lastName: 'Smith'});
|
|
|
|
|
|
|
|
console.log(user.id); // 1
|
|
|
|
console.log(user.firstName); // 'John'
|
|
|
|
console.log(user.lastName); // 'Smith'
|
|
|
|
|
2013-08-16 19:13:25 +00:00
|
|
|
|
2013-08-16 17:53:33 +00:00
|
|
|
That's it. Now you have a User constructor representing the user model.
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
At this point, the constructor only has a set of accessors to model properties.
|
|
|
|
No behaviors have been introduced yet.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
## Adding logic to a model
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
Models describe the shape of data. To leverage the data, we'll add logic to the
|
|
|
|
model for various purposes, such as:
|
2013-08-19 21:00:33 +00:00
|
|
|
|
|
|
|
- Interact with the data store for CRUD
|
|
|
|
- Add behavior around a model instance
|
|
|
|
- Add service operations using the model as the context
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
There are a few ways to add methods to a model constructor:
|
|
|
|
|
2013-08-23 18:46:56 +00:00
|
|
|
### Create the model constructor from a data source
|
2013-08-19 21:00:33 +00:00
|
|
|
A LoopBack data source injects methods on the model.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
var DataSource = require('loopback-datasource-juggler').DataSource;
|
|
|
|
var ds = new DataSource('memory');
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
// Compile the user model definition into a JavaScript constructor
|
|
|
|
var User = ds.define('User', UserDefinition);
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
// Create a new instance of User
|
|
|
|
User.create({id: 1, firstName: 'John', lastName: 'Smith'}, function(err, user) {
|
|
|
|
console.log(user); // The newly created user instance
|
|
|
|
User.findById(1, function(err, user) {
|
|
|
|
console.log(user); // The user instance for id 1
|
|
|
|
user.firstName = 'John1'; // Change the property
|
|
|
|
user.save(function(err, user) {
|
|
|
|
console.log(user); // The modified user instance for id 1
|
|
|
|
});
|
|
|
|
};
|
|
|
|
});
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
|
2013-08-23 18:46:56 +00:00
|
|
|
### Attach the model to a data source
|
2013-08-16 17:53:33 +00:00
|
|
|
A plain model constructor created from `ModelBuilder` can be attached a `DataSource`.
|
|
|
|
|
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
var DataSource = require('loopback-datasource-juggler').DataSource;
|
|
|
|
var ds = new DataSource('memory');
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
User.attachTo(ds); // The CRUD methods will be mixed into the User constructor
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-23 18:46:56 +00:00
|
|
|
### Manually add methods to the model constructor
|
2013-08-29 04:41:11 +00:00
|
|
|
Static methods can be added by declaring a function as a member of the model
|
|
|
|
constructor. Within a class method, other class methods can be called using the
|
|
|
|
model as usual.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
|
2013-08-16 17:53:33 +00:00
|
|
|
// Define a static method
|
2013-08-20 18:58:04 +00:00
|
|
|
User.findByLastName = function(lastName, cb) {
|
|
|
|
User.find({where: {lastName: lastName}, cb);
|
2013-08-16 17:53:33 +00:00
|
|
|
};
|
|
|
|
|
2013-08-20 18:58:04 +00:00
|
|
|
User.findByLastName('Smith', function(err, users) {
|
|
|
|
console.log(users); // Print an array of user instances
|
|
|
|
});
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
Instance methods can be added to the prototype. Within instance methods, the
|
|
|
|
model instance itself can be referenced with this keyword.
|
2013-08-20 18:58:04 +00:00
|
|
|
|
2013-08-16 17:53:33 +00:00
|
|
|
// Define a prototype method
|
|
|
|
User.prototype.getFullName = function () {
|
|
|
|
return this.firstName + ' ' + this.lastName;
|
|
|
|
};
|
|
|
|
|
|
|
|
var user = new User({id: 1, firstName: 'John', lastName: 'Smith'});
|
|
|
|
console.log(user.getFullName()); // 'John Smith'
|
|
|
|
|
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
## Exploring advanced LDL features
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
As we mentioned before, a complete model definition is an object with three
|
|
|
|
properties:
|
2013-08-19 21:00:33 +00:00
|
|
|
|
|
|
|
- name: The model name
|
|
|
|
- options: An object of options, optional
|
|
|
|
- properties: An object of property definitions
|
|
|
|
|
|
|
|
### Model level options
|
|
|
|
There are a set of options to control the model definition.
|
|
|
|
|
|
|
|
- strict:
|
|
|
|
- true: Only properties defined in the model are accepted. This is the default.
|
|
|
|
- false: The model will be an open model. Unknown properties are accepted as well.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
- idInjection:
|
|
|
|
- true: An `id` property will be added to the model automatically
|
|
|
|
- false: No `id` property will be added to the model
|
|
|
|
|
|
|
|
- Data source specific mappings
|
2013-08-29 04:41:11 +00:00
|
|
|
The model can be decorated with connector-specific options to customize the
|
|
|
|
mapping between the model and the connector. For example, we can define the
|
|
|
|
corresponding schema/table names for Oracle as follows:
|
2013-08-19 21:00:33 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"name": "Location",
|
|
|
|
"options": {
|
|
|
|
"idInjection": false,
|
|
|
|
"oracle": {
|
|
|
|
"schema": "BLACKPOOL",
|
|
|
|
"table": "LOCATION"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
### Property definitions
|
2013-08-29 04:41:11 +00:00
|
|
|
A model consists of a list of properties. The basic example use
|
|
|
|
`propertyName: type` to describe a property.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
Properties can have options in addition to the type. LDL uses a JSON object to
|
|
|
|
describe such properties, for example:
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
"id": {"type": "number", "id": true, "doc": "User ID"}
|
|
|
|
|
|
|
|
"firstName": {"type": "string", "required": true, "oracle": {"column": "FIRST_NAME", "type": "VARCHAR(32)"}}
|
|
|
|
|
2013-08-20 18:58:04 +00:00
|
|
|
**Note** `"id": "number"` is a short form of `"id": {"type": "number"}`.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
#### Data types
|
2013-08-20 18:58:04 +00:00
|
|
|
LDL supports the following data types.
|
2013-08-16 19:13:25 +00:00
|
|
|
|
2013-08-16 17:53:33 +00:00
|
|
|
- String/Text
|
|
|
|
- Number
|
|
|
|
- Date
|
|
|
|
- Boolean
|
|
|
|
- Buffer/Binary
|
|
|
|
- Array
|
|
|
|
- Any/Object/JSON
|
|
|
|
- GeoPoint
|
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
##### Array types
|
2013-08-16 19:13:25 +00:00
|
|
|
LDL supports array types as follows:
|
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
- `{emails: [String]}`
|
|
|
|
- `{"emails": ["String"]}`
|
|
|
|
- `{emails: [{type: String, length: 64}]}`
|
2013-08-16 19:13:25 +00:00
|
|
|
|
2013-08-19 21:00:33 +00:00
|
|
|
##### Object types
|
2013-08-29 04:41:11 +00:00
|
|
|
A model often has properties that consist of other properties. For example, the
|
|
|
|
user model can have an `address` property
|
2013-08-16 19:13:25 +00:00
|
|
|
that in turn has properties such as `street`, `city`, `state`, and `zipCode`.
|
|
|
|
|
|
|
|
LDL allows inline declaration of such properties, for example,
|
|
|
|
|
|
|
|
var UserModel = {
|
|
|
|
firstName: String,
|
|
|
|
lastName: String,
|
|
|
|
address: {
|
|
|
|
street: String,
|
|
|
|
city: String,
|
|
|
|
state: String,
|
|
|
|
zipCode: String
|
|
|
|
},
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
The value of the address is the definition of the `address` type, which can be
|
|
|
|
also considered as an anonymous model.
|
2013-08-16 19:13:25 +00:00
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
If you intend to reuse the address model, we can define it independently and
|
|
|
|
reference it in the user model. For example,
|
2013-08-16 19:13:25 +00:00
|
|
|
|
|
|
|
var AddressModel = {
|
|
|
|
street: String,
|
|
|
|
city: String,
|
|
|
|
state: String,
|
|
|
|
zipCode: String
|
|
|
|
};
|
|
|
|
|
|
|
|
var Address = ds.define('Address', AddressModel);
|
|
|
|
|
|
|
|
var UserModel = {
|
|
|
|
firstName: String,
|
|
|
|
lastName: String,
|
|
|
|
address: 'Address', // or address: Address
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
var User = ds.define('User', UserModel);
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
**Note**: The user model has to reference the Address constructor or the model
|
|
|
|
name - `'Address'`.
|
2013-08-16 19:13:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#### ID(s) for a model
|
2013-08-29 04:41:11 +00:00
|
|
|
A model representing data to be persisted in a database usually has one or more
|
|
|
|
properties as an id to uniquely identify the model instance. For example, the
|
|
|
|
`user` model can have user ids.
|
2013-08-16 19:13:25 +00:00
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
By default, if no id properties are defined and the `idInjection` of the model
|
|
|
|
options is false, LDL will automatically add an id property to the model as follows:
|
2013-08-20 18:58:04 +00:00
|
|
|
|
|
|
|
id: {type: Number, generated: true, id: true}
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
To explicitly specify a property as `id`, LDL provides an `id` property for the
|
|
|
|
option. The value can be true, false, or a number.
|
2013-08-20 18:58:04 +00:00
|
|
|
|
|
|
|
- true: It's an id
|
|
|
|
- false or any falsey values: It's not an id (default)
|
|
|
|
- a positive number, such as 1 or 2: It's the index of the composite id
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
LDL supports the definition of a composite id that has more than one properties.
|
|
|
|
For example,
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
var InventoryDefinition =
|
|
|
|
{
|
|
|
|
productId: {type: String, id: 1},
|
|
|
|
locationId: {type: String, id: 2},
|
|
|
|
qty: Number
|
|
|
|
}
|
|
|
|
|
|
|
|
The composite id is (productId, locationId) for an inventory model.
|
|
|
|
|
2013-08-16 19:13:25 +00:00
|
|
|
#### Property documentation
|
2013-08-16 17:53:33 +00:00
|
|
|
* doc: Documentation of the property
|
|
|
|
|
2013-08-16 19:13:25 +00:00
|
|
|
#### Constraints
|
2013-08-20 18:58:04 +00:00
|
|
|
Constraints are modeled as options too, for example:
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-20 18:58:04 +00:00
|
|
|
* default: The default value of the property
|
2013-08-16 17:53:33 +00:00
|
|
|
* required: Indicate if the property is required
|
|
|
|
* pattern: A regular expression pattern that a string should match
|
|
|
|
* min/max: The minimal and maximal value
|
|
|
|
* length: The maximal length of a string
|
|
|
|
|
2013-08-16 19:13:25 +00:00
|
|
|
|
|
|
|
#### Conversion and formatting
|
2013-08-16 17:53:33 +00:00
|
|
|
Format conversions can also be declared as options, for example:
|
|
|
|
|
|
|
|
* trim: Trim the string
|
|
|
|
* lowercase: Convert the string to be lowercase
|
|
|
|
* uppercase: Convert the string to be uppercase
|
|
|
|
* format: Format a Date
|
|
|
|
|
2013-08-16 19:13:25 +00:00
|
|
|
#### Mapping
|
2013-08-29 04:41:11 +00:00
|
|
|
Data source specific mappings can be added to the property options, for example,
|
|
|
|
to map a property to be a column in Oracle database table, you can use the
|
|
|
|
following syntax:
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
"oracle": {"column": "FIRST_NAME", "type": "VARCHAR", "length": 32}
|
|
|
|
|
|
|
|
|
|
|
|
### Relations between models
|
|
|
|
|
2013-08-20 18:58:04 +00:00
|
|
|
#### hasMany
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
A `hasMany` relation builds a one-to-many connection with another model. You'll
|
|
|
|
often find this relation on the "other side" of a `belongsTo` relation. This
|
|
|
|
relation indicates that each instance of the model has zero or more instances
|
|
|
|
of another model. For example, in an application containing users and posts, a
|
|
|
|
user has zero or more posts. For example,
|
2013-08-20 18:58:04 +00:00
|
|
|
|
2013-08-16 17:53:33 +00:00
|
|
|
// setup relationships
|
|
|
|
User.hasMany(Post, {as: 'posts', foreignKey: 'userId'});
|
2013-08-20 18:58:04 +00:00
|
|
|
// creates instance methods:
|
|
|
|
// user.posts(conds)
|
|
|
|
// user.posts.build(data) // like new Post({userId: user.id});
|
|
|
|
// user.posts.create(data) // build and save
|
|
|
|
|
|
|
|
Define all necessary stuff for `one to many` relation:
|
|
|
|
|
|
|
|
- foreign key in `many` model
|
|
|
|
- named scope in `one` model
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
var Book = db.define('Book');
|
|
|
|
var Chapter = db.define('Chapters');
|
|
|
|
|
|
|
|
// Style 1
|
|
|
|
Book.hasMany(Chapter, {as: 'chapters'});
|
|
|
|
|
|
|
|
// Style 2
|
|
|
|
Book.hasMany('chapters', {model: Chapter, foreignKey: 'chapter_id'});
|
|
|
|
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
Scope methods created on the base model by hasMany allows to build, create and
|
|
|
|
query instances of other class. For example,
|
2013-08-20 18:58:04 +00:00
|
|
|
|
|
|
|
Book.create(function(err, book) {
|
|
|
|
// using 'chapters' scope for build:
|
|
|
|
var c = book.chapters.build({name: 'Chapter 1'});
|
|
|
|
// same as:
|
|
|
|
c = new Chapter({name: 'Chapter 1', bookId: book.id});
|
|
|
|
// using 'chapters' scope for create:
|
|
|
|
book.chapters.create();
|
|
|
|
// same as:
|
|
|
|
Chapter.create({bookId: book.id});
|
|
|
|
|
|
|
|
// using scope for querying:
|
|
|
|
book.chapters(function() {/* all chapters with bookId = book.id */ });
|
|
|
|
book.chapters({where: {name: 'test'}, function(err, chapters) {
|
|
|
|
// all chapters with bookId = book.id and name = 'test'
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### belongsTo
|
2013-08-29 04:41:11 +00:00
|
|
|
A `belongsTo` relation sets up a one-to-one connection with another model, such
|
|
|
|
that each instance of the declaring model "belongs to" one instance of the other
|
|
|
|
model. For example, if your application includes users and posts, and each post
|
|
|
|
can be written by exactly one user.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
Post.belongsTo(User, {as: 'author', foreignKey: 'userId'});
|
|
|
|
|
2013-08-29 04:41:11 +00:00
|
|
|
The code above basically says Post has a reference called `author` to User using
|
|
|
|
the `userId` property of Post as the foreign key. Now we can access the author
|
|
|
|
in one of the following styles:
|
2013-08-20 18:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
post.author(callback); // Get the User object for the post author asynchronously
|
|
|
|
post.author(); // Get the User object for the post author synchronously
|
|
|
|
post.author(user) // Set the author to be the given user
|
|
|
|
|
|
|
|
#### hasAndBelongsToMany
|
2013-08-29 04:41:11 +00:00
|
|
|
A `hasAndBelongsToMany` relation creates a direct many-to-many connection with
|
|
|
|
another model, with no intervening model. For example, if your application
|
|
|
|
includes users and groups, with each group having many users and each user
|
|
|
|
appearing in many groups, you could declare the models this way,
|
2013-08-20 18:58:04 +00:00
|
|
|
|
|
|
|
User.hasAndBelongsToMany('groups', {model: Group, foreignKey: 'groupId'});
|
|
|
|
user.groups(callback); // get groups of the user
|
|
|
|
user.groups.create(data, callback); // create a new group and connect it with the user
|
|
|
|
user.groups.add(group, callback); // connect an existing group with the user
|
|
|
|
user.groups.remove(group, callback); // remove the user from the group
|
|
|
|
|
2013-08-16 17:53:33 +00:00
|
|
|
|
|
|
|
### Extend from a base model
|
2013-08-29 04:41:11 +00:00
|
|
|
LDL allows a new model to extend from an existing model. For example, Customer
|
|
|
|
can extend from User as follows. The Customer model will inherit properties and
|
|
|
|
methods from the User model.
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-20 18:58:04 +00:00
|
|
|
var Customer = User.extend('customer', {
|
2013-08-23 18:46:56 +00:00
|
|
|
accountId: String,
|
|
|
|
vip: Boolean
|
2013-08-20 18:58:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
### Mix in model definitions
|
2013-08-29 04:41:11 +00:00
|
|
|
Some models share the common set of properties and logic around. LDL allows a
|
|
|
|
model to mix in one or more other models. For example,
|
2013-08-16 17:53:33 +00:00
|
|
|
|
2013-08-23 18:46:56 +00:00
|
|
|
var TimeStamp = modelBuilder.define('TimeStamp', {created: Date, modified: Date});
|
2013-08-20 18:58:04 +00:00
|
|
|
var Group = modelBuilder.define('Group', {groups: [String]});
|
2013-08-23 18:46:56 +00:00
|
|
|
User.mixin(Group, TimeStamp);
|