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

Commit 5b9fbbf4 by Sascha Depold

v0.2.3

1 parent ce1a746a
Showing with 18 additions and 4 deletions
......@@ -4,8 +4,12 @@ The Sequelize library provides easy access to a MySQL database by mapping databa
## Installation ##
Sequelize will have a NPM and a Kiwi package in future. For now, you can just download the code from the git repository and require _sequelize.js_:
Sequelize will have a Kiwi package in future. For now, you can install it via NPM or just download the code from the git repository and require _sequelize.js_:
#npm:
npm install sequelize
#checkout:
require(__dirname + "/path/to/sequelize/sequelize")
This will make the class Sequelize available.
......
......@@ -8,4 +8,14 @@
- added method for chaining an arbitraty amount of queries
# 0.2.1 #
- fixed date bug
\ No newline at end of file
- fixed date bug
# 0.2.2 #
- released project as npm package
# 0.2.3 #
- added latest mysql connection library
- fixed id handling on save
- fixed text handling (varchar > 255; text)
- using the inflection library for naming tables more convenient
- Sequelize.TEXT is now using MySQL datatype TEXT instead of varchar(4000)
\ No newline at end of file
{
"name": "sequelize",
"description": "MySQL ORM for Node.JS",
"version": "0.2.2",
"version": "0.2.3",
"author": "Sascha Depold <sascha-github@depold.com>",
"contributors": [
{ "name": "Sascha Depold", "email": "sascha-github@depold.com" }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!