不要怂,就是干,撸起袖子干!

Commit 7a9200da by Sascha Depold

removed obsolete returns from example

1 parent 5f6b428a
......@@ -53,7 +53,7 @@ You can also store your model definitions in a single file using the _import_ me
// Project.js
exports.getProjectClass = function(Sequelize, sequelize) {
return sequelize.define("Project", {
sequelize.define("Project", {
name: Sequelize.STRING,
description: Sequelize.TEXT
})
......
......@@ -7,6 +7,4 @@ exports.getProjectClass = function(Sequelize, sequelize) {
/*
Here comes further Project logic
*/
return Project
}
\ No newline at end of file
......@@ -8,6 +8,4 @@ exports.getTaskClass = function(Sequelize, sequelize) {
/*
Here comes further Task logic
*/
return Task
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!