diff options
author | Konstantin Shabanov <etehtsea@gmail.com> | 2012-06-12 18:10:08 +0400 |
---|---|---|
committer | Konstantin Shabanov <etehtsea@gmail.com> | 2012-06-14 17:44:51 +0400 |
commit | 12e9a75f227ea7bcc23e2717e9ff5a72ec64e1f1 (patch) | |
tree | 91a5ba4f0cd38588c1399b1ba13a1853fbbd37e5 /activerecord/test/schema | |
parent | 122f6de2e038dbbece4ee59ddcfcf75ae9c49f63 (diff) | |
download | rails-12e9a75f227ea7bcc23e2717e9ff5a72ec64e1f1.tar.gz rails-12e9a75f227ea7bcc23e2717e9ff5a72ec64e1f1.tar.bz2 rails-12e9a75f227ea7bcc23e2717e9ff5a72ec64e1f1.zip |
Add uuid type support to PostgreSQL adapter
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/postgresql_specific_schema.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb index e51db50ae3..5f01f1fc50 100644 --- a/activerecord/test/schema/postgresql_specific_schema.rb +++ b/activerecord/test/schema/postgresql_specific_schema.rb @@ -1,6 +1,6 @@ ActiveRecord::Schema.define do - %w(postgresql_tsvectors postgresql_hstores postgresql_arrays postgresql_moneys postgresql_numbers postgresql_times postgresql_network_addresses postgresql_bit_strings + %w(postgresql_tsvectors postgresql_hstores postgresql_arrays postgresql_moneys postgresql_numbers postgresql_times postgresql_network_addresses postgresql_bit_strings postgresql_uuids postgresql_oids postgresql_xml_data_type defaults geometrics postgresql_timestamp_with_zones postgresql_partitioned_table postgresql_partitioned_table_parent).each do |table_name| execute "DROP TABLE IF EXISTS #{quote_table_name table_name}" end @@ -59,6 +59,14 @@ _SQL _SQL execute <<_SQL + CREATE TABLE postgresql_uuids ( + id SERIAL PRIMARY KEY, + guid uuid, + compact_guid uuid + ); +_SQL + + execute <<_SQL CREATE TABLE postgresql_tsvectors ( id SERIAL PRIMARY KEY, text_vector tsvector |