2008-04-21 06:00:01 -04:00
|
|
|
ActiveRecord::Schema.define do
|
|
|
|
|
2012-06-12 10:10:08 -04:00
|
|
|
%w(postgresql_tsvectors postgresql_hstores postgresql_arrays postgresql_moneys postgresql_numbers postgresql_times postgresql_network_addresses postgresql_bit_strings postgresql_uuids
|
2012-09-05 13:01:21 -04:00
|
|
|
postgresql_oids postgresql_xml_data_type defaults geometrics postgresql_timestamp_with_zones postgresql_partitioned_table postgresql_partitioned_table_parent postgresql_json_data_type).each do |table_name|
|
2012-03-31 16:38:11 -04:00
|
|
|
execute "DROP TABLE IF EXISTS #{quote_table_name table_name}"
|
2008-04-21 06:00:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
execute 'DROP SEQUENCE IF EXISTS companies_nonstd_seq CASCADE'
|
|
|
|
execute 'CREATE SEQUENCE companies_nonstd_seq START 101 OWNED BY companies.id'
|
|
|
|
execute "ALTER TABLE companies ALTER COLUMN id SET DEFAULT nextval('companies_nonstd_seq')"
|
|
|
|
execute 'DROP SEQUENCE IF EXISTS companies_id_seq'
|
|
|
|
|
2012-03-31 16:38:11 -04:00
|
|
|
execute 'DROP FUNCTION IF EXISTS partitioned_insert_trigger()'
|
|
|
|
|
2012-10-12 18:03:30 -04:00
|
|
|
execute "DROP SCHEMA IF EXISTS schema_1 CASCADE"
|
|
|
|
|
2008-04-21 06:00:01 -04:00
|
|
|
%w(accounts_id_seq developers_id_seq projects_id_seq topics_id_seq customers_id_seq orders_id_seq).each do |seq_name|
|
|
|
|
execute "SELECT setval('#{seq_name}', 100)"
|
|
|
|
end
|
|
|
|
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE defaults (
|
|
|
|
id serial primary key,
|
|
|
|
modified_date date default CURRENT_DATE,
|
|
|
|
modified_date_function date default now(),
|
|
|
|
fixed_date date default '2004-01-01',
|
|
|
|
modified_time timestamp default CURRENT_TIMESTAMP,
|
|
|
|
modified_time_function timestamp default now(),
|
|
|
|
fixed_time timestamp default '2004-01-01 00:00:00.000000-00',
|
|
|
|
char1 char(1) default 'Y',
|
|
|
|
char2 character varying(50) default 'a varchar field',
|
|
|
|
char3 text default 'a text field',
|
|
|
|
positive_integer integer default 1,
|
|
|
|
negative_integer integer default -1,
|
|
|
|
decimal_number decimal(3,2) default 2.78,
|
|
|
|
multiline_default text DEFAULT '--- []
|
|
|
|
|
|
|
|
'::text
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
2012-10-12 18:03:30 -04:00
|
|
|
execute "CREATE SCHEMA schema_1"
|
|
|
|
execute "CREATE DOMAIN schema_1.text AS text"
|
|
|
|
execute "CREATE DOMAIN schema_1.varchar AS varchar"
|
|
|
|
execute "CREATE DOMAIN schema_1.bpchar AS bpchar"
|
|
|
|
|
|
|
|
execute <<_SQL
|
2008-04-21 06:00:01 -04:00
|
|
|
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[],
|
|
|
|
nicknames TEXT[]
|
|
|
|
);
|
|
|
|
_SQL
|
2011-04-26 03:47:40 -04:00
|
|
|
|
2012-06-12 10:10:08 -04:00
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_uuids (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
guid uuid,
|
|
|
|
compact_guid uuid
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
2011-04-26 03:47:40 -04:00
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_tsvectors (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
text_vector tsvector
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
2012-02-05 14:58:14 -05:00
|
|
|
if 't' == select_value("select 'hstore'=ANY(select typname from pg_type)")
|
2012-02-05 14:52:50 -05:00
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_hstores (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
hash_store hstore default ''::hstore
|
|
|
|
);
|
|
|
|
_SQL
|
2012-02-05 14:58:14 -05:00
|
|
|
end
|
2012-02-05 14:52:50 -05:00
|
|
|
|
2012-09-05 13:01:21 -04:00
|
|
|
if 't' == select_value("select 'json'=ANY(select typname from pg_type)")
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_json_data_type (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
json_data json default '{}'::json
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
end
|
|
|
|
|
2008-04-21 06:00:01 -04:00
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_moneys (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
wealth MONEY
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_numbers (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
single REAL,
|
|
|
|
double DOUBLE PRECISION
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_times (
|
|
|
|
id SERIAL PRIMARY KEY,
|
2012-09-05 07:06:28 -04:00
|
|
|
time_interval INTERVAL,
|
|
|
|
scaled_time_interval INTERVAL(6)
|
2008-04-21 06:00:01 -04:00
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_network_addresses (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
cidr_address CIDR,
|
|
|
|
inet_address INET,
|
|
|
|
mac_address MACADDR
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_bit_strings (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
bit_string BIT(8),
|
|
|
|
bit_string_varying BIT VARYING(8)
|
|
|
|
);
|
|
|
|
_SQL
|
|
|
|
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_oids (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
obj_id OID
|
|
|
|
);
|
|
|
|
_SQL
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-23 21:16:29 -05:00
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_timestamp_with_zones (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
time TIMESTAMP WITH TIME ZONE
|
|
|
|
);
|
|
|
|
_SQL
|
2009-08-09 04:56:25 -04:00
|
|
|
|
2012-04-27 22:53:07 -04:00
|
|
|
begin
|
|
|
|
execute <<_SQL
|
|
|
|
CREATE TABLE postgresql_partitioned_table_parent (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
number integer
|
|
|
|
);
|
|
|
|
CREATE TABLE postgresql_partitioned_table ( )
|
|
|
|
INHERITS (postgresql_partitioned_table_parent);
|
|
|
|
|
|
|
|
CREATE OR REPLACE FUNCTION partitioned_insert_trigger()
|
|
|
|
RETURNS TRIGGER AS $$
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO postgresql_partitioned_table VALUES (NEW.*);
|
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
$$
|
|
|
|
LANGUAGE plpgsql;
|
|
|
|
|
|
|
|
CREATE TRIGGER insert_partitioning_trigger
|
|
|
|
BEFORE INSERT ON postgresql_partitioned_table_parent
|
|
|
|
FOR EACH ROW EXECUTE PROCEDURE partitioned_insert_trigger();
|
2012-03-31 16:38:11 -04:00
|
|
|
_SQL
|
2012-04-27 22:53:07 -04:00
|
|
|
rescue ActiveRecord::StatementInvalid => e
|
|
|
|
if e.message =~ /language "plpgsql" does not exist/
|
|
|
|
execute "CREATE LANGUAGE 'plpgsql';"
|
|
|
|
retry
|
|
|
|
else
|
|
|
|
raise e
|
|
|
|
end
|
|
|
|
end
|
2012-03-31 16:38:11 -04:00
|
|
|
|
2009-08-09 04:56:25 -04:00
|
|
|
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
|
2012-11-19 22:38:19 -05:00
|
|
|
|
2012-11-28 08:11:11 -05:00
|
|
|
# This table is to verify if the :limit option is being ignored for text and binary columns
|
2012-11-19 22:38:19 -05:00
|
|
|
create_table :limitless_fields, force: true do |t|
|
|
|
|
t.binary :binary, limit: 100_000
|
|
|
|
t.text :text, limit: 100_000
|
|
|
|
end
|
2009-08-09 04:56:25 -04:00
|
|
|
end
|
|
|
|
|