aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-04-19 17:17:19 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-04-19 17:17:19 +0900
commita80e944e182584b6e6e6095a5a0ee9a06445b095 (patch)
tree56deda829f248c4f58927ca2559db0c2cd5f1f62 /activerecord/test/schema
parent0c77018f8d8712f966b8b97e275ceb763d474dd3 (diff)
downloadrails-a80e944e182584b6e6e6095a5a0ee9a06445b095.tar.gz
rails-a80e944e182584b6e6e6095a5a0ee9a06445b095.tar.bz2
rails-a80e944e182584b6e6e6095a5a0ee9a06445b095.zip
Remove unused `table_with_autoincrement` table
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/sqlite_specific_schema.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/test/schema/sqlite_specific_schema.rb b/activerecord/test/schema/sqlite_specific_schema.rb
index b5552c2755..cc7c36fe2b 100644
--- a/activerecord/test/schema/sqlite_specific_schema.rb
+++ b/activerecord/test/schema/sqlite_specific_schema.rb
@@ -1,8 +1,4 @@
ActiveRecord::Schema.define do
- create_table :table_with_autoincrement, :force => true do |t|
- t.column :name, :string
- end
-
execute "DROP TABLE fk_test_has_fk" rescue nil
execute "DROP TABLE fk_test_has_pk" rescue nil
execute <<_SQL