aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/schema.rb
diff options
context:
space:
mode:
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