README.md in rails3_sequel-0.2.0 vs README.md in rails3_sequel-0.2.1
- old
+ new
@@ -88,11 +88,11 @@
db:migrate:rollback
Alias to db:migrate:down. Can use VERSION and STEP also.
db:schema:dump
Uses Sequel's schema_dumper. Stores output in db/schema.rb.
db:schema:load
- Does not work yet, but you can use just run the migrator on the schema file.
+ Does not work yet, but you can just run Sequel::Migrator on the schema file.
db:seed
Load the seed data from db/seeds.rb
db:version
Shows the current migration version
db:setup, db:test:load, db:test:purge
@@ -117,11 +117,11 @@
Boolean - will use a TrueClass in your migration and a checkbox in your view.
Text - will use a String with the :text option set to true and a text_area in your view.
Example:
- rails g scaffold cat name:String:pk description:Text ugly:Boolean location:geocode
+ rails g scaffold cat name:String:pk description:Text ugly:Boolean location:geocode
Note that the "location" field's type will not be translated and geocode will be used as the type in the database.
Generator options (set in config/application.rb for defaults):
@@ -150,7 +150,8 @@
MIT
Credits
-------
-Based partially on rails_sequel by Piotr Usewicz: http://github.com/pusewicz/rails_sequel
-Thanks to ActiveRecord's and dm-rails' railties
++ Piotr Usewicz for rails_sequel (http://github.com/pusewicz/rails_sequel)
++ Jeremy Evans for Sequel and pointers he gave for this plugin
++ Many thanks to ActiveRecord's and dm-rails' railties, and everyone at Rails 3 team for making this even possible