diff options
author | Frederick Cheung <frederick.cheung@gmail.com> | 2008-09-12 12:40:36 +0100 |
---|---|---|
committer | Frederick Cheung <frederick.cheung@gmail.com> | 2008-09-12 12:40:36 +0100 |
commit | 99acfb5b02f7984ff50e100d95ada31303033f74 (patch) | |
tree | 599d867c726c287414cde5eeb0fd8af9b8d86556 | |
parent | 194e972f7c7a9746c6edf6f0c99a4d55d8c35574 (diff) | |
download | rails-99acfb5b02f7984ff50e100d95ada31303033f74.tar.gz rails-99acfb5b02f7984ff50e100d95ada31303033f74.tar.bz2 rails-99acfb5b02f7984ff50e100d95ada31303033f74.zip |
Revert "mention that InnoDB is actually the default"
This reverts commit c2f89513290a5e123d2e32231314dce9464bb810.
-rw-r--r-- | railties/doc/guides/migrations/writing_a_migration.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/migrations/writing_a_migration.txt b/railties/doc/guides/migrations/writing_a_migration.txt index 9260b67e10..09b0c53df8 100644 --- a/railties/doc/guides/migrations/writing_a_migration.txt +++ b/railties/doc/guides/migrations/writing_a_migration.txt @@ -40,7 +40,7 @@ create_table :products, :options => "ENGINE=InnoDB" do |t| t.string :name, :null => false end --------------------- -Will append `ENGINE=InnoDB` to the sql used to create the table (this is actually the default when using MySQL). +Will append `ENGINE=InnoDB` to the sql used to create the table. The types Active Record supports are `:primary_key`, `:string`, `:text`, `:integer`, `:float`, `:decimal`, `:datetime`, `:timestamp`, `:time`, `:date`, `:binary`, `:boolean`. |