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

Commit 5b9fbbf4 by Sascha Depold

v0.2.3

1 parent ce1a746a
Showing with 17 additions and 2 deletions
...@@ -4,8 +4,12 @@ The Sequelize library provides easy access to a MySQL database by mapping databa ...@@ -4,8 +4,12 @@ The Sequelize library provides easy access to a MySQL database by mapping databa
## Installation ## ## 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") require(__dirname + "/path/to/sequelize/sequelize")
This will make the class Sequelize available. This will make the class Sequelize available.
......
...@@ -9,3 +9,13 @@ ...@@ -9,3 +9,13 @@
# 0.2.1 # # 0.2.1 #
- fixed date bug - 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", "name": "sequelize",
"description": "MySQL ORM for Node.JS", "description": "MySQL ORM for Node.JS",
"version": "0.2.2", "version": "0.2.3",
"author": "Sascha Depold <sascha-github@depold.com>", "author": "Sascha Depold <sascha-github@depold.com>",
"contributors": [ "contributors": [
{ "name": "Sascha Depold", "email": "sascha-github@depold.com" } { "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!