aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-12-02 11:00:19 +0100
committerYves Senn <yves.senn@gmail.com>2014-12-02 11:00:19 +0100
commitbcf5b281a88dadd5c5001757b3d1958eb83606b5 (patch)
tree0d238f4ed1ce950068935a95d41764b0213452d6 /activerecord/test/schema
parent66966f2d61e60e2caa19fbe1871717ad8557f052 (diff)
downloadrails-bcf5b281a88dadd5c5001757b3d1958eb83606b5.tar.gz
rails-bcf5b281a88dadd5c5001757b3d1958eb83606b5.tar.bz2
rails-bcf5b281a88dadd5c5001757b3d1958eb83606b5.zip
tests, move pg geometric tests out of `base_test`.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb
index 7c44409d34..e7615392db 100644
--- a/activerecord/test/schema/postgresql_specific_schema.rb
+++ b/activerecord/test/schema/postgresql_specific_schema.rb
@@ -45,19 +45,6 @@ _SQL
execute "CREATE DOMAIN schema_1.bpchar AS bpchar"
execute <<_SQL
- CREATE TABLE geometrics (
- id serial primary key,
- a_point point,
- -- a_line line, (the line type is currently not implemented in postgresql)
- a_line_segment lseg,
- a_box box,
- a_path path,
- a_polygon polygon,
- a_circle circle
- );
-_SQL
-
- execute <<_SQL
CREATE TABLE postgresql_arrays (
id SERIAL PRIMARY KEY,
commission_by_quarter INTEGER[],