aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/schema.rb
diff options
context:
space:
mode:
authorJosh Kalderimis <josh.kalderimis@gmail.com>2010-05-09 00:03:45 +0300
committerCarl Lerche <carllerche@mac.com>2010-05-09 00:08:11 +0300
commit605c6455ac722ed9679e17458a47cc649cdedab0 (patch)
tree028c8922ebb81bc0209aeffcac22c2b1a49b8e66 /activemodel/test/schema.rb
parent88ad3ed8b53a66954f50a423e138052d048a42c3 (diff)
downloadrails-605c6455ac722ed9679e17458a47cc649cdedab0.tar.gz
rails-605c6455ac722ed9679e17458a47cc649cdedab0.tar.bz2
rails-605c6455ac722ed9679e17458a47cc649cdedab0.zip
removed AR from all AMo tests, including any unneeded files (schema, fixtures and test helper)
Diffstat (limited to 'activemodel/test/schema.rb')
-rw-r--r--activemodel/test/schema.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/activemodel/test/schema.rb b/activemodel/test/schema.rb
deleted file mode 100644
index 56b824d445..0000000000
--- a/activemodel/test/schema.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-ActiveRecord::Schema.define do
- create_table :topics, :force => true do |t|
- t.string :title
- t.string :author_name
- t.text :content
- t.boolean :approved, :default => true
- t.string :type
- end
-
- create_table :developers, :force => true do |t|
- t.string :name
- t.float :salary
- end
-end