diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2015-02-25 01:19:59 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2015-02-25 01:19:59 +0900 |
commit | 531063543b99c02e69470e39b3eee677aa85e66f (patch) | |
tree | 4770059f7701b0f90cb427cb414c8edd56b459f7 | |
parent | 8adfd4fea78cf62b31334a05f1a567ed861cf6a9 (diff) | |
download | rails-531063543b99c02e69470e39b3eee677aa85e66f.tar.gz rails-531063543b99c02e69470e39b3eee677aa85e66f.tar.bz2 rails-531063543b99c02e69470e39b3eee677aa85e66f.zip |
Remove unused table
`postgresql_xml_data_type` table is used from nowhere.
-rw-r--r-- | activerecord/test/schema/postgresql_specific_schema.rb | 10 |
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 |