aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-24 13:31:11 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-24 13:31:11 -0300
commit48dcaeab38ed81abbe190662f81e1030a4032e21 (patch)
tree7f955b27077b15389dcf7aa6e69bb51e81943e8a /activerecord
parent762bfee4a2a36f5c3bcf0f969bc0ee703d547152 (diff)
parent531063543b99c02e69470e39b3eee677aa85e66f (diff)
downloadrails-48dcaeab38ed81abbe190662f81e1030a4032e21.tar.gz
rails-48dcaeab38ed81abbe190662f81e1030a4032e21.tar.bz2
rails-48dcaeab38ed81abbe190662f81e1030a4032e21.zip
Merge pull request #19064 from kamipo/remove_unused_table
Remove unused table
Diffstat (limited to 'activerecord')
-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