aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/schema.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-03-20 15:33:40 +0000
committerPratik Naik <pratiknaik@gmail.com>2009-03-20 15:33:40 +0000
commitd01e639dafece0cbae08512f4645bcee7a5a8224 (patch)
treef539afc0a085b4f0e4358bf931005adfe6001af5 /activemodel/test/schema.rb
parentcda984d3140d3ba1ab442b38acc12b9e29f92cd2 (diff)
downloadrails-d01e639dafece0cbae08512f4645bcee7a5a8224.tar.gz
rails-d01e639dafece0cbae08512f4645bcee7a5a8224.tar.bz2
rails-d01e639dafece0cbae08512f4645bcee7a5a8224.zip
Remove unused columns from the ActiveModel test schema
Diffstat (limited to 'activemodel/test/schema.rb')
-rw-r--r--activemodel/test/schema.rb9
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