From 531063543b99c02e69470e39b3eee677aa85e66f Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Wed, 25 Feb 2015 01:19:59 +0900 Subject: [PATCH] Remove unused table `postgresql_xml_data_type` table is used from nowhere. --- activerecord/test/schema/postgresql_specific_schema.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb index 77d2f7fda2..f84be0e7f4 100644 --- a/activerecord/test/schema/postgresql_specific_schema.rb +++ b/activerecord/test/schema/postgresql_specific_schema.rb @@ -88,16 +88,6 @@ _SQL end end - begin - execute <<_SQL - CREATE TABLE postgresql_xml_data_type ( - id SERIAL PRIMARY KEY, - data xml - ); -_SQL - rescue #This version of PostgreSQL either has no XML support or is was not compiled with XML support: skipping table - end - # This table is to verify if the :limit option is being ignored for text and binary columns create_table :limitless_fields, force: true do |t| t.binary :binary, limit: 100_000