コード例 #1
0
ファイル: Album.js プロジェクト: BillsJ/achilles-mongodb
function Album() {
	achilles.Model.call(this);

	this.define("title", String);
	this.define("rating", Number);
	this.define("songs", [Song]);
}
コード例 #2
0
ファイル: Post.js プロジェクト: D0VK3/pandora
function Post() {
	achilles.Model.call(this);

	this.define("title", String);
	this.define("content", Content);
	this.define("date", Date);

	this.content = new Content();
}