diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2009-03-20 15:33:40 +0000 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-03-20 15:33:40 +0000 |
commit | d01e639dafece0cbae08512f4645bcee7a5a8224 (patch) | |
tree | f539afc0a085b4f0e4358bf931005adfe6001af5 | |
parent | cda984d3140d3ba1ab442b38acc12b9e29f92cd2 (diff) | |
download | rails-d01e639dafece0cbae08512f4645bcee7a5a8224.tar.gz rails-d01e639dafece0cbae08512f4645bcee7a5a8224.tar.bz2 rails-d01e639dafece0cbae08512f4645bcee7a5a8224.zip |
Remove unused columns from the ActiveModel test schema
-rw-r--r-- | activemodel/test/schema.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/activemodel/test/schema.rb b/activemodel/test/schema.rb index 3f289c63f8..f7fe31dc4e 100644 --- a/activemodel/test/schema.rb +++ b/activemodel/test/schema.rb @@ -2,21 +2,12 @@ ActiveRecord::Schema.define do create_table :topics, :force => true do |t| t.string :title t.string :author_name - t.string :author_email_address - t.datetime :written_on - t.time :bonus_time - t.date :last_read t.text :content t.boolean :approved, :default => true - t.integer :replies_count, :default => 0 - t.integer :parent_id t.string :type end create_table :developers, :force => true do |t| t.string :name - t.integer :salary, :default => 70000 - t.datetime :created_at - t.datetime :updated_at end end |