aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/postgresql_specific_schema.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2015-02-25 01:19:59 +0900
committerRyuta Kamizono <kamipo@gmail.com>2015-02-25 01:19:59 +0900
commit531063543b99c02e69470e39b3eee677aa85e66f (patch)
tree4770059f7701b0f90cb427cb414c8edd56b459f7 /activerecord/test/schema/postgresql_specific_schema.rb
parent8adfd4fea78cf62b31334a05f1a567ed861cf6a9 (diff)
downloadrails-531063543b99c02e69470e39b3eee677aa85e66f.tar.gz
rails-531063543b99c02e69470e39b3eee677aa85e66f.tar.bz2
rails-531063543b99c02e69470e39b3eee677aa85e66f.zip
Remove unused table
`postgresql_xml_data_type` table is used from nowhere.
Diffstat (limited to 'activerecord/test/schema/postgresql_specific_schema.rb')
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb10
1 files changed, 0 insertions, 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