aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-25 19:13:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-25 19:13:04 +0000
commit63f188ceb01fa02487946e21ef623218f5074264 (patch)
tree5ad5978fce039e52ab694dda7d7689b89e080501 /railties/CHANGELOG
parentef338e4de4e5a9fa8d1c3b3c93cc59d24c42ec37 (diff)
downloadrails-63f188ceb01fa02487946e21ef623218f5074264.tar.gz
rails-63f188ceb01fa02487946e21ef623218f5074264.tar.bz2
rails-63f188ceb01fa02487946e21ef623218f5074264.zip
Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3644 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 5380a90935..e63f68f355 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [DHH]
+
* Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [DHH]
* Allow script/server -c /path/to/lighttpd.conf [Jeremy Kemper]