diff options
author | Matt Boehlig <thetamind@gmail.com> | 2008-05-11 16:46:07 -0500 |
---|---|---|
committer | Matt Boehlig <thetamind@gmail.com> | 2008-05-11 16:46:07 -0500 |
commit | 35634feb474cc55fbc95edeffe98cec241d45f23 (patch) | |
tree | 9f9091817f8ff0947397dfb223d9e0b0a5576251 /activerecord/CHANGELOG | |
parent | f4aaa2e99c350466e54afefdf278b4ba04008cd9 (diff) | |
download | rails-35634feb474cc55fbc95edeffe98cec241d45f23.tar.gz rails-35634feb474cc55fbc95edeffe98cec241d45f23.tar.bz2 rails-35634feb474cc55fbc95edeffe98cec241d45f23.zip |
Cleanup whitespace and change_table documentation
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 597b876f22..264ea79d4a 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -8,7 +8,7 @@ change_table :videos do |t| t.timestamps # adds created_at, updated_at - t.belongs_to :goat # add goat_id integer + t.belongs_to :goat # adds goat_id integer t.string :name, :email, :limit => 20 # adds name and email both with a 20 char limit t.remove :name, :email # removes the name and email columns end |