You are here: Browse Railsplugins Row Version Migrations
= Row Version Migrations
Row Version Migrations is a plugin that automatically generates the following row version columns for every table:
:created_at, :datetime, :null => false
:updated_at, :datetime, :null => false
:lock_version, :integer, :null => false, :default => 0
If you have a table for which you do not want row version columns to be generated, simply pass :row_version => false as an option to create_table:
create_table :orders, :row_version => false do |t|
...
end
=== Dependencies
=== License
This plugin is copyright 2006 by RedHill Consulting, Pty. Ltd. and is released under the MIT license.
NOTE: This description has been extracted from the Plugin README and so the formatting may need updating to make browser friendly