aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/mysql2_specific_schema.rb58
-rw-r--r--activerecord/test/schema/mysql_specific_schema.rb70
-rw-r--r--activerecord/test/schema/oracle_specific_schema.rb43
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb205
-rw-r--r--activerecord/test/schema/schema.rb882
-rw-r--r--activerecord/test/schema/sqlite_specific_schema.rb22
6 files changed, 1280 insertions, 0 deletions
diff --git a/activerecord/test/schema/mysql2_specific_schema.rb b/activerecord/test/schema/mysql2_specific_schema.rb
new file mode 100644
index 0000000000..a9a6514c9d
--- /dev/null
+++ b/activerecord/test/schema/mysql2_specific_schema.rb
@@ -0,0 +1,58 @@
+ActiveRecord::Schema.define do
+ create_table :binary_fields, force: true do |t|
+ t.binary :var_binary, limit: 255
+ t.binary :var_binary_large, limit: 4095
+ t.column :tiny_blob, 'tinyblob', limit: 255
+ t.binary :normal_blob, limit: 65535
+ t.binary :medium_blob, limit: 16777215
+ t.binary :long_blob, limit: 2147483647
+ t.text :tiny_text, limit: 255
+ t.text :normal_text, limit: 65535
+ t.text :medium_text, limit: 16777215
+ t.text :long_text, limit: 2147483647
+ end
+
+ add_index :binary_fields, :var_binary
+
+ create_table :key_tests, force: true, :options => 'ENGINE=MyISAM' do |t|
+ t.string :awesome
+ t.string :pizza
+ t.string :snacks
+ end
+
+ add_index :key_tests, :awesome, :type => :fulltext, :name => 'index_key_tests_on_awesome'
+ add_index :key_tests, :pizza, :using => :btree, :name => 'index_key_tests_on_pizza'
+ add_index :key_tests, :snacks, :name => 'index_key_tests_on_snack'
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP PROCEDURE IF EXISTS ten;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE PROCEDURE ten() SQL SECURITY INVOKER
+BEGIN
+ select 10;
+END
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP TABLE IF EXISTS collation_tests;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE TABLE collation_tests (
+ string_cs_column VARCHAR(1) COLLATE utf8_bin,
+ string_ci_column VARCHAR(1) COLLATE utf8_general_ci
+) CHARACTER SET utf8 COLLATE utf8_general_ci
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP TABLE IF EXISTS enum_tests;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE TABLE enum_tests (
+ enum_column ENUM('text','blob','tiny','medium','long')
+)
+SQL
+end
diff --git a/activerecord/test/schema/mysql_specific_schema.rb b/activerecord/test/schema/mysql_specific_schema.rb
new file mode 100644
index 0000000000..f2cffca52c
--- /dev/null
+++ b/activerecord/test/schema/mysql_specific_schema.rb
@@ -0,0 +1,70 @@
+ActiveRecord::Schema.define do
+ create_table :binary_fields, force: true do |t|
+ t.binary :var_binary, limit: 255
+ t.binary :var_binary_large, limit: 4095
+ t.column :tiny_blob, 'tinyblob', limit: 255
+ t.binary :normal_blob, limit: 65535
+ t.binary :medium_blob, limit: 16777215
+ t.binary :long_blob, limit: 2147483647
+ t.text :tiny_text, limit: 255
+ t.text :normal_text, limit: 65535
+ t.text :medium_text, limit: 16777215
+ t.text :long_text, limit: 2147483647
+ end
+
+ add_index :binary_fields, :var_binary
+
+ create_table :key_tests, force: true, :options => 'ENGINE=MyISAM' do |t|
+ t.string :awesome
+ t.string :pizza
+ t.string :snacks
+ end
+
+ add_index :key_tests, :awesome, :type => :fulltext, :name => 'index_key_tests_on_awesome'
+ add_index :key_tests, :pizza, :using => :btree, :name => 'index_key_tests_on_pizza'
+ add_index :key_tests, :snacks, :name => 'index_key_tests_on_snack'
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP PROCEDURE IF EXISTS ten;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE PROCEDURE ten() SQL SECURITY INVOKER
+BEGIN
+ select 10;
+END
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP PROCEDURE IF EXISTS topics;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE PROCEDURE topics() SQL SECURITY INVOKER
+BEGIN
+ select * from topics limit 1;
+END
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP TABLE IF EXISTS collation_tests;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE TABLE collation_tests (
+ string_cs_column VARCHAR(1) COLLATE utf8_bin,
+ string_ci_column VARCHAR(1) COLLATE utf8_general_ci
+) CHARACTER SET utf8 COLLATE utf8_general_ci
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+DROP TABLE IF EXISTS enum_tests;
+SQL
+
+ ActiveRecord::Base.connection.execute <<-SQL
+CREATE TABLE enum_tests (
+ enum_column ENUM('text','blob','tiny','medium','long')
+)
+SQL
+
+end
diff --git a/activerecord/test/schema/oracle_specific_schema.rb b/activerecord/test/schema/oracle_specific_schema.rb
new file mode 100644
index 0000000000..a7817772f4
--- /dev/null
+++ b/activerecord/test/schema/oracle_specific_schema.rb
@@ -0,0 +1,43 @@
+ActiveRecord::Schema.define do
+
+ execute "drop table test_oracle_defaults" rescue nil
+ execute "drop sequence test_oracle_defaults_seq" rescue nil
+ execute "drop sequence companies_nonstd_seq" rescue nil
+ execute "drop table defaults" rescue nil
+ execute "drop sequence defaults_seq" rescue nil
+
+ execute <<-SQL
+create table test_oracle_defaults (
+ id integer not null primary key,
+ test_char char(1) default 'X' not null,
+ test_string varchar2(20) default 'hello' not null,
+ test_int integer default 3 not null
+)
+ SQL
+
+ execute <<-SQL
+create sequence test_oracle_defaults_seq minvalue 10000
+ SQL
+
+ execute "create sequence companies_nonstd_seq minvalue 10000"
+
+ execute <<-SQL
+ CREATE TABLE defaults (
+ id integer not null,
+ modified_date date default sysdate,
+ modified_date_function date default sysdate,
+ fixed_date date default to_date('2004-01-01', 'YYYY-MM-DD'),
+ modified_time date default sysdate,
+ modified_time_function date default sysdate,
+ fixed_time date default TO_DATE('2004-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS'),
+ char1 varchar2(1) default 'Y',
+ char2 varchar2(50) default 'a varchar field',
+ char3 clob default 'a text field',
+ positive_integer integer default 1,
+ negative_integer integer default -1,
+ decimal_number number(3,2) default 2.78
+ )
+ SQL
+ execute "create sequence defaults_seq minvalue 10000"
+
+end
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb
new file mode 100644
index 0000000000..e9294a11b9
--- /dev/null
+++ b/activerecord/test/schema/postgresql_specific_schema.rb
@@ -0,0 +1,205 @@
+ActiveRecord::Schema.define do
+
+ %w(postgresql_tsvectors postgresql_hstores postgresql_arrays postgresql_moneys postgresql_numbers postgresql_times postgresql_network_addresses postgresql_uuids postgresql_ltrees
+ postgresql_oids postgresql_xml_data_type defaults geometrics postgresql_timestamp_with_zones postgresql_partitioned_table postgresql_partitioned_table_parent postgresql_json_data_type postgresql_citext).each do |table_name|
+ execute "DROP TABLE IF EXISTS #{quote_table_name table_name}"
+ 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'
+
+ execute 'DROP FUNCTION IF EXISTS partitioned_insert_trigger()'
+
+ execute "DROP SCHEMA IF EXISTS schema_1 CASCADE"
+
+ %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,
+ bigint_default bigint default 0::bigint,
+ decimal_number decimal(3,2) default 2.78,
+ multiline_default text DEFAULT '--- []
+
+'::text
+);
+_SQL
+
+ 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
+ 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
+
+ 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
+ );
+_SQL
+
+ if 't' == select_value("select 'hstore'=ANY(select typname from pg_type)")
+ execute <<_SQL
+ CREATE TABLE postgresql_hstores (
+ id SERIAL PRIMARY KEY,
+ hash_store hstore default ''::hstore
+ );
+_SQL
+ end
+
+ if 't' == select_value("select 'ltree'=ANY(select typname from pg_type)")
+ execute <<_SQL
+ CREATE TABLE postgresql_ltrees (
+ id SERIAL PRIMARY KEY,
+ path ltree
+ );
+_SQL
+ end
+
+ if 't' == select_value("select 'citext'=ANY(select typname from pg_type)")
+ execute <<_SQL
+ CREATE TABLE postgresql_citext (
+ id SERIAL PRIMARY KEY,
+ text_citext citext default ''::citext
+ );
+_SQL
+ end
+
+ 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
+
+ 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,
+ time_interval INTERVAL,
+ scaled_time_interval INTERVAL(6)
+ );
+_SQL
+
+ execute <<_SQL
+ CREATE TABLE postgresql_network_addresses (
+ id SERIAL PRIMARY KEY,
+ cidr_address CIDR default '192.168.1.0/24',
+ inet_address INET default '192.168.1.1',
+ mac_address MACADDR default 'ff:ff:ff:ff:ff:ff'
+ );
+_SQL
+
+ execute <<_SQL
+ CREATE TABLE postgresql_oids (
+ id SERIAL PRIMARY KEY,
+ obj_id OID
+ );
+_SQL
+
+ execute <<_SQL
+ CREATE TABLE postgresql_timestamp_with_zones (
+ id SERIAL PRIMARY KEY,
+ time TIMESTAMP WITH TIME ZONE
+ );
+_SQL
+
+ 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();
+_SQL
+ rescue ActiveRecord::StatementInvalid => e
+ if e.message =~ /language "plpgsql" does not exist/
+ execute "CREATE LANGUAGE 'plpgsql';"
+ retry
+ else
+ raise e
+ 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
+ t.text :text, limit: 100_000
+ end
+end
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
new file mode 100644
index 0000000000..a8b21904ac
--- /dev/null
+++ b/activerecord/test/schema/schema.rb
@@ -0,0 +1,882 @@
+# encoding: utf-8
+
+ActiveRecord::Schema.define do
+ def except(adapter_names_to_exclude)
+ unless [adapter_names_to_exclude].flatten.include?(adapter_name)
+ yield
+ end
+ end
+
+ #put adapter specific setup here
+ case adapter_name
+ when "PostgreSQL"
+ enable_uuid_ossp!(ActiveRecord::Base.connection)
+ create_table :uuid_parents, id: :uuid, force: true do |t|
+ t.string :name
+ end
+ create_table :uuid_children, id: :uuid, force: true do |t|
+ t.string :name
+ t.uuid :uuid_parent_id
+ end
+ end
+
+
+ # ------------------------------------------------------------------- #
+ # #
+ # Please keep these create table statements in alphabetical order #
+ # unless the ordering matters. In which case, define them below. #
+ # #
+ # ------------------------------------------------------------------- #
+
+ create_table :accounts, force: true do |t|
+ t.integer :firm_id
+ t.string :firm_name
+ t.integer :credit_limit
+ end
+
+ create_table :admin_accounts, force: true do |t|
+ t.string :name
+ end
+
+ create_table :admin_users, force: true do |t|
+ t.string :name
+ t.string :settings, null: true, limit: 1024
+ # MySQL does not allow default values for blobs. Fake it out with a
+ # big varchar below.
+ t.string :preferences, null: true, default: '', limit: 1024
+ t.string :json_data, null: true, limit: 1024
+ t.string :json_data_empty, null: true, default: "", limit: 1024
+ t.text :params
+ t.references :account
+ end
+
+ create_table :aircraft, force: true do |t|
+ t.string :name
+ end
+
+ create_table :articles, force: true do |t|
+ end
+
+ create_table :articles_magazines, force: true do |t|
+ t.references :article
+ t.references :magazine
+ end
+
+ create_table :articles_tags, force: true do |t|
+ t.references :article
+ t.references :tag
+ end
+
+ create_table :audit_logs, force: true do |t|
+ t.column :message, :string, null: false
+ t.column :developer_id, :integer, null: false
+ t.integer :unvalidated_developer_id
+ end
+
+ create_table :authors, force: true do |t|
+ t.string :name, null: false
+ t.integer :author_address_id
+ t.integer :author_address_extra_id
+ t.string :organization_id
+ t.string :owned_essay_id
+ end
+
+ create_table :author_addresses, force: true do |t|
+ end
+
+ add_foreign_key :authors, :author_addresses
+
+ create_table :author_favorites, force: true do |t|
+ t.column :author_id, :integer
+ t.column :favorite_author_id, :integer
+ end
+
+ create_table :auto_id_tests, force: true, id: false do |t|
+ t.primary_key :auto_id
+ t.integer :value
+ end
+
+ create_table :binaries, force: true do |t|
+ t.string :name
+ t.binary :data
+ t.binary :short_data, limit: 2048
+ end
+
+ create_table :birds, force: true do |t|
+ t.string :name
+ t.string :color
+ t.integer :pirate_id
+ end
+
+ create_table :books, force: true do |t|
+ t.integer :author_id
+ t.string :format
+ t.column :name, :string
+ t.column :status, :integer, default: 0
+ t.column :read_status, :integer, default: 0
+ t.column :nullable_status, :integer
+ end
+
+ create_table :booleans, force: true do |t|
+ t.boolean :value
+ t.boolean :has_fun, null: false, default: false
+ end
+
+ create_table :bulbs, force: true do |t|
+ t.integer :car_id
+ t.string :name
+ t.boolean :frickinawesome
+ t.string :color
+ end
+
+ create_table "CamelCase", force: true do |t|
+ t.string :name
+ end
+
+ create_table :cars, force: true do |t|
+ t.string :name
+ t.integer :engines_count
+ t.integer :wheels_count
+ t.column :lock_version, :integer, null: false, default: 0
+ t.timestamps
+ end
+
+ create_table :categories, force: true do |t|
+ t.string :name, null: false
+ t.string :type
+ t.integer :categorizations_count
+ end
+
+ create_table :categories_posts, force: true, id: false do |t|
+ t.integer :category_id, null: false
+ t.integer :post_id, null: false
+ end
+
+ create_table :categorizations, force: true do |t|
+ t.column :category_id, :integer
+ t.string :named_category_name
+ t.column :post_id, :integer
+ t.column :author_id, :integer
+ t.column :special, :boolean
+ end
+
+ create_table :citations, force: true do |t|
+ t.column :book1_id, :integer
+ t.column :book2_id, :integer
+ end
+
+ create_table :clubs, force: true do |t|
+ t.string :name
+ t.integer :category_id
+ end
+
+ create_table :collections, force: true do |t|
+ t.string :name
+ end
+
+ create_table :colnametests, force: true do |t|
+ t.integer :references, null: false
+ end
+
+ create_table :columns, force: true do |t|
+ t.references :record
+ end
+
+ create_table :comments, force: true do |t|
+ t.integer :post_id, null: false
+ # use VARCHAR2(4000) instead of CLOB datatype as CLOB data type has many limitations in
+ # Oracle SELECT WHERE clause which causes many unit test failures
+ if current_adapter?(:OracleAdapter)
+ t.string :body, null: false, limit: 4000
+ else
+ t.text :body, null: false
+ end
+ t.string :type
+ t.integer :tags_count, default: 0
+ t.integer :children_count, default: 0
+ t.integer :parent_id
+ t.references :author, polymorphic: true
+ t.string :resource_id
+ t.string :resource_type
+ end
+
+ create_table :companies, force: true do |t|
+ t.string :type
+ t.integer :firm_id
+ t.string :firm_name
+ t.string :name
+ t.integer :client_of
+ t.integer :rating, default: 1
+ t.integer :account_id
+ t.string :description, default: ""
+ end
+
+ add_index :companies, [:firm_id, :type, :rating], name: "company_index"
+ add_index :companies, [:firm_id, :type], name: "company_partial_index", where: "rating > 10"
+ add_index :companies, :name, name: 'company_name_index', using: :btree
+
+ create_table :vegetables, force: true do |t|
+ t.string :name
+ t.integer :seller_id
+ t.string :custom_type
+ end
+
+ create_table :computers, force: true do |t|
+ t.string :system
+ t.integer :developer, null: false
+ t.integer :extendedWarranty, null: false
+ end
+
+ create_table :contracts, force: true do |t|
+ t.integer :developer_id
+ t.integer :company_id
+ end
+
+ create_table :customers, force: true do |t|
+ t.string :name
+ t.integer :balance, default: 0
+ t.string :address_street
+ t.string :address_city
+ t.string :address_country
+ t.string :gps_location
+ end
+
+ create_table :dashboards, force: true, id: false do |t|
+ t.string :dashboard_id
+ t.string :name
+ end
+
+ create_table :developers, force: true do |t|
+ t.string :name
+ t.integer :salary, default: 70000
+ t.datetime :created_at
+ t.datetime :updated_at
+ t.datetime :created_on
+ t.datetime :updated_on
+ end
+
+ create_table :developers_projects, force: true, id: false do |t|
+ t.integer :developer_id, null: false
+ t.integer :project_id, null: false
+ t.date :joined_on
+ t.integer :access_level, default: 1
+ end
+
+ create_table :dog_lovers, force: true do |t|
+ t.integer :trained_dogs_count, default: 0
+ t.integer :bred_dogs_count, default: 0
+ t.integer :dogs_count, default: 0
+ end
+
+ create_table :dogs, force: true do |t|
+ t.integer :trainer_id
+ t.integer :breeder_id
+ t.integer :dog_lover_id
+ t.string :alias
+ end
+
+ create_table :edges, force: true, id: false do |t|
+ t.column :source_id, :integer, null: false
+ t.column :sink_id, :integer, null: false
+ end
+ add_index :edges, [:source_id, :sink_id], unique: true, name: 'unique_edge_index'
+
+ create_table :engines, force: true do |t|
+ t.integer :car_id
+ end
+
+ create_table :entrants, force: true do |t|
+ t.string :name, null: false
+ t.integer :course_id, null: false
+ end
+
+ create_table :essays, force: true do |t|
+ t.string :name
+ t.string :writer_id
+ t.string :writer_type
+ t.string :category_id
+ t.string :author_id
+ end
+
+ create_table :events, force: true do |t|
+ t.string :title, limit: 5
+ end
+
+ create_table :eyes, force: true do |t|
+ end
+
+ create_table :funny_jokes, force: true do |t|
+ t.string :name
+ end
+
+ create_table :cold_jokes, force: true do |t|
+ t.string :name
+ end
+
+ create_table :friendships, force: true do |t|
+ t.integer :friend_id
+ t.integer :follower_id
+ end
+
+ create_table :goofy_string_id, force: true, id: false do |t|
+ t.string :id, null: false
+ t.string :info
+ end
+
+ create_table :having, force: true do |t|
+ t.string :where
+ end
+
+ create_table :guids, force: true do |t|
+ t.column :key, :string
+ end
+
+ create_table :inept_wizards, force: true do |t|
+ t.column :name, :string, null: false
+ t.column :city, :string, null: false
+ t.column :type, :string
+ end
+
+ create_table :integer_limits, force: true do |t|
+ t.integer :"c_int_without_limit"
+ (1..8).each do |i|
+ t.integer :"c_int_#{i}", limit: i
+ end
+ end
+
+ create_table :invoices, force: true do |t|
+ t.integer :balance
+ t.datetime :updated_at
+ end
+
+ create_table :iris, force: true do |t|
+ t.references :eye
+ t.string :color
+ end
+
+ create_table :items, force: true do |t|
+ t.column :name, :string
+ end
+
+ create_table :jobs, force: true do |t|
+ t.integer :ideal_reference_id
+ end
+
+ create_table :keyboards, force: true, id: false do |t|
+ t.primary_key :key_number
+ t.string :name
+ end
+
+ create_table :legacy_things, force: true do |t|
+ t.integer :tps_report_number
+ t.integer :version, null: false, default: 0
+ end
+
+ create_table :lessons, force: true do |t|
+ t.string :name
+ end
+
+ create_table :lessons_students, id: false, force: true do |t|
+ t.references :lesson
+ t.references :student
+ end
+
+ create_table :lint_models, force: true
+
+ create_table :line_items, force: true do |t|
+ t.integer :invoice_id
+ t.integer :amount
+ end
+
+ create_table :lock_without_defaults, force: true do |t|
+ t.column :lock_version, :integer
+ end
+
+ create_table :lock_without_defaults_cust, force: true do |t|
+ t.column :custom_lock_version, :integer
+ end
+
+ create_table :magazines, force: true do |t|
+ end
+
+ create_table :mateys, id: false, force: true do |t|
+ t.column :pirate_id, :integer
+ t.column :target_id, :integer
+ t.column :weight, :integer
+ end
+
+ create_table :members, force: true do |t|
+ t.string :name
+ t.integer :member_type_id
+ end
+
+ create_table :member_details, force: true do |t|
+ t.integer :member_id
+ t.integer :organization_id
+ t.string :extra_data
+ end
+
+ create_table :member_friends, force: true, id: false do |t|
+ t.integer :member_id
+ t.integer :friend_id
+ end
+
+ create_table :memberships, force: true do |t|
+ t.datetime :joined_on
+ t.integer :club_id, :member_id
+ t.boolean :favourite, default: false
+ t.string :type
+ end
+
+ create_table :member_types, force: true do |t|
+ t.string :name
+ end
+
+ create_table :minivans, force: true, id: false do |t|
+ t.string :minivan_id
+ t.string :name
+ t.string :speedometer_id
+ t.string :color
+ end
+
+ create_table :minimalistics, force: true do |t|
+ end
+
+ create_table :mixed_case_monkeys, force: true, id: false do |t|
+ t.primary_key :monkeyID
+ t.integer :fleaCount
+ end
+
+ create_table :mixins, force: true do |t|
+ t.integer :parent_id
+ t.integer :pos
+ t.datetime :created_at
+ t.datetime :updated_at
+ t.integer :lft
+ t.integer :rgt
+ t.integer :root_id
+ t.string :type
+ end
+
+ create_table :movies, force: true, id: false do |t|
+ t.primary_key :movieid
+ t.string :name
+ end
+
+ create_table :numeric_data, force: true do |t|
+ t.decimal :bank_balance, precision: 10, scale: 2
+ t.decimal :big_bank_balance, precision: 15, scale: 2
+ t.decimal :world_population, precision: 10, scale: 0
+ t.decimal :my_house_population, precision: 2, scale: 0
+ t.decimal :decimal_number_with_default, precision: 3, scale: 2, default: 2.78
+ t.float :temperature
+ # Oracle/SQLServer supports precision up to 38
+ if current_adapter?(:OracleAdapter, :SQLServerAdapter)
+ t.decimal :atoms_in_universe, precision: 38, scale: 0
+ else
+ t.decimal :atoms_in_universe, precision: 55, scale: 0
+ end
+ end
+
+ create_table :orders, force: true do |t|
+ t.string :name
+ t.integer :billing_customer_id
+ t.integer :shipping_customer_id
+ end
+
+ create_table :organizations, force: true do |t|
+ t.string :name
+ end
+
+ create_table :owners, primary_key: :owner_id, force: true do |t|
+ t.string :name
+ t.column :updated_at, :datetime
+ t.column :happy_at, :datetime
+ t.string :essay_id
+ end
+
+ create_table :paint_colors, force: true do |t|
+ t.integer :non_poly_one_id
+ end
+
+ create_table :paint_textures, force: true do |t|
+ t.integer :non_poly_two_id
+ end
+
+ create_table :parrots, force: true do |t|
+ t.column :name, :string
+ t.column :color, :string
+ t.column :parrot_sti_class, :string
+ t.column :killer_id, :integer
+ t.column :created_at, :datetime
+ t.column :created_on, :datetime
+ t.column :updated_at, :datetime
+ t.column :updated_on, :datetime
+ end
+
+ create_table :parrots_pirates, id: false, force: true do |t|
+ t.column :parrot_id, :integer
+ t.column :pirate_id, :integer
+ end
+
+ create_table :parrots_treasures, id: false, force: true do |t|
+ t.column :parrot_id, :integer
+ t.column :treasure_id, :integer
+ end
+
+ create_table :people, force: true do |t|
+ t.string :first_name, null: false
+ t.references :primary_contact
+ t.string :gender, limit: 1
+ t.references :number1_fan
+ t.integer :lock_version, null: false, default: 0
+ t.string :comments
+ t.integer :followers_count, default: 0
+ t.integer :friends_too_count, default: 0
+ t.references :best_friend
+ t.references :best_friend_of
+ t.integer :insures, null: false, default: 0
+ t.timestamp :born_at
+ t.timestamps
+ end
+
+ create_table :peoples_treasures, id: false, force: true do |t|
+ t.column :rich_person_id, :integer
+ t.column :treasure_id, :integer
+ end
+
+ create_table :pets, primary_key: :pet_id, force: true do |t|
+ t.string :name
+ t.integer :owner_id, :integer
+ t.timestamps
+ end
+
+ create_table :pirates, force: true do |t|
+ t.column :catchphrase, :string
+ t.column :parrot_id, :integer
+ t.integer :non_validated_parrot_id
+ t.column :created_on, :datetime
+ t.column :updated_on, :datetime
+ end
+
+ create_table :posts, force: true do |t|
+ t.integer :author_id
+ t.string :title, null: false
+ # use VARCHAR2(4000) instead of CLOB datatype as CLOB data type has many limitations in
+ # Oracle SELECT WHERE clause which causes many unit test failures
+ if current_adapter?(:OracleAdapter)
+ t.string :body, null: false, limit: 4000
+ else
+ t.text :body, null: false
+ end
+ t.string :type
+ t.integer :comments_count, default: 0
+ t.integer :taggings_with_delete_all_count, default: 0
+ t.integer :taggings_with_destroy_count, default: 0
+ t.integer :tags_count, default: 0
+ t.integer :tags_with_destroy_count, default: 0
+ t.integer :tags_with_nullify_count, default: 0
+ end
+
+ create_table :price_estimates, force: true do |t|
+ t.string :estimate_of_type
+ t.integer :estimate_of_id
+ t.integer :price
+ end
+
+ create_table :products, force: true do |t|
+ t.references :collection
+ t.references :type
+ t.string :name
+ end
+
+ create_table :product_types, force: true do |t|
+ t.string :name
+ end
+
+ create_table :projects, force: true do |t|
+ t.string :name
+ t.string :type
+ end
+
+ create_table :randomly_named_table, force: true do |t|
+ t.string :some_attribute
+ t.integer :another_attribute
+ end
+
+ create_table :ratings, force: true do |t|
+ t.integer :comment_id
+ t.integer :value
+ end
+
+ create_table :readers, force: true do |t|
+ t.integer :post_id, null: false
+ t.integer :person_id, null: false
+ t.boolean :skimmer, default: false
+ t.integer :first_post_id
+ end
+
+ create_table :references, force: true do |t|
+ t.integer :person_id
+ t.integer :job_id
+ t.boolean :favourite
+ t.integer :lock_version, default: 0
+ end
+
+ create_table :shape_expressions, force: true do |t|
+ t.string :paint_type
+ t.integer :paint_id
+ t.string :shape_type
+ t.integer :shape_id
+ end
+
+ create_table :ships, force: true do |t|
+ t.string :name
+ t.integer :pirate_id
+ t.integer :update_only_pirate_id
+ t.datetime :created_at
+ t.datetime :created_on
+ t.datetime :updated_at
+ t.datetime :updated_on
+ end
+
+ create_table :ship_parts, force: true do |t|
+ t.string :name
+ t.integer :ship_id
+ end
+
+ create_table :speedometers, force: true, id: false do |t|
+ t.string :speedometer_id
+ t.string :name
+ t.string :dashboard_id
+ end
+
+ create_table :sponsors, force: true do |t|
+ t.integer :club_id
+ t.integer :sponsorable_id
+ t.string :sponsorable_type
+ end
+
+ create_table :string_key_objects, id: false, primary_key: :id, force: true do |t|
+ t.string :id
+ t.string :name
+ t.integer :lock_version, null: false, default: 0
+ end
+
+ create_table :students, force: true do |t|
+ t.string :name
+ t.boolean :active
+ t.integer :college_id
+ end
+
+ create_table :subscribers, force: true, id: false do |t|
+ t.string :nick, null: false
+ t.string :name
+ t.column :books_count, :integer, null: false, default: 0
+ end
+ add_index :subscribers, :nick, unique: true
+
+ create_table :subscriptions, force: true do |t|
+ t.string :subscriber_id
+ t.integer :book_id
+ end
+
+ create_table :tags, force: true do |t|
+ t.column :name, :string
+ t.column :taggings_count, :integer, default: 0
+ end
+
+ create_table :taggings, force: true do |t|
+ t.column :tag_id, :integer
+ t.column :super_tag_id, :integer
+ t.column :taggable_type, :string
+ t.column :taggable_id, :integer
+ t.string :comment
+ end
+
+ create_table :tasks, force: true do |t|
+ t.datetime :starting
+ t.datetime :ending
+ end
+
+ create_table :topics, force: true do |t|
+ t.string :title, limit: 250
+ t.string :author_name
+ t.string :author_email_address
+ if mysql_56?
+ t.datetime :written_on, limit: 6
+ else
+ t.datetime :written_on
+ end
+ t.time :bonus_time
+ t.date :last_read
+ # use VARCHAR2(4000) instead of CLOB datatype as CLOB data type has many limitations in
+ # Oracle SELECT WHERE clause which causes many unit test failures
+ if current_adapter?(:OracleAdapter)
+ t.string :content, limit: 4000
+ t.string :important, limit: 4000
+ else
+ t.text :content
+ t.text :important
+ end
+ t.boolean :approved, default: true
+ t.integer :replies_count, default: 0
+ t.integer :unique_replies_count, default: 0
+ t.integer :parent_id
+ t.string :parent_title
+ t.string :type
+ t.string :group
+ t.timestamps
+ end
+
+ create_table :toys, primary_key: :toy_id, force: true do |t|
+ t.string :name
+ t.integer :pet_id, :integer
+ t.timestamps
+ end
+
+ create_table :traffic_lights, force: true do |t|
+ t.string :location
+ t.string :state
+ t.text :long_state, null: false
+ t.datetime :created_at
+ t.datetime :updated_at
+ end
+
+ create_table :treasures, force: true do |t|
+ t.column :name, :string
+ t.column :type, :string
+ t.column :looter_id, :integer
+ t.column :looter_type, :string
+ end
+
+ create_table :tyres, force: true do |t|
+ t.integer :car_id
+ end
+
+ create_table :variants, force: true do |t|
+ t.references :product
+ t.string :name
+ end
+
+ create_table :vertices, force: true do |t|
+ t.column :label, :string
+ end
+
+ create_table 'warehouse-things', force: true do |t|
+ t.integer :value
+ end
+
+ [:circles, :squares, :triangles, :non_poly_ones, :non_poly_twos].each do |t|
+ create_table(t, force: true) { }
+ end
+
+ # NOTE - the following 4 tables are used by models that have :inverse_of options on the associations
+ create_table :men, force: true do |t|
+ t.string :name
+ end
+
+ create_table :faces, force: true do |t|
+ t.string :description
+ t.integer :man_id
+ t.integer :polymorphic_man_id
+ t.string :polymorphic_man_type
+ t.integer :poly_man_without_inverse_id
+ t.string :poly_man_without_inverse_type
+ t.integer :horrible_polymorphic_man_id
+ t.string :horrible_polymorphic_man_type
+ end
+
+ create_table :interests, force: true do |t|
+ t.string :topic
+ t.integer :man_id
+ t.integer :polymorphic_man_id
+ t.string :polymorphic_man_type
+ t.integer :zine_id
+ end
+
+ create_table :wheels, force: true do |t|
+ t.references :wheelable, polymorphic: true
+ end
+
+ create_table :zines, force: true do |t|
+ t.string :title
+ end
+
+ create_table :countries, force: true, id: false, primary_key: 'country_id' do |t|
+ t.string :country_id
+ t.string :name
+ end
+ create_table :treaties, force: true, id: false, primary_key: 'treaty_id' do |t|
+ t.string :treaty_id
+ t.string :name
+ end
+ create_table :countries_treaties, force: true, id: false do |t|
+ t.string :country_id, null: false
+ t.string :treaty_id, null: false
+ end
+
+ create_table :liquid, force: true do |t|
+ t.string :name
+ end
+ create_table :molecules, force: true do |t|
+ t.integer :liquid_id
+ t.string :name
+ end
+ create_table :electrons, force: true do |t|
+ t.integer :molecule_id
+ t.string :name
+ end
+ create_table :weirds, force: true do |t|
+ t.string 'a$b'
+ t.string 'なまえ'
+ t.string 'from'
+ end
+
+ create_table :hotels, force: true do |t|
+ end
+ create_table :departments, force: true do |t|
+ t.integer :hotel_id
+ end
+ create_table :cake_designers, force: true do |t|
+ end
+ create_table :drink_designers, force: true do |t|
+ end
+ create_table :chefs, force: true do |t|
+ t.integer :employable_id
+ t.string :employable_type
+ t.integer :department_id
+ end
+
+ create_table :records, force: true do |t|
+ end
+
+ except 'SQLite' do
+ # fk_test_has_fk should be before fk_test_has_pk
+ create_table :fk_test_has_fk, force: true do |t|
+ t.integer :fk_id, null: false
+ end
+
+ create_table :fk_test_has_pk, force: true, primary_key: "pk_id" do |t|
+ end
+
+ add_foreign_key :fk_test_has_fk, :fk_test_has_pk, column: "fk_id", name: "fk_name", primary_key: "pk_id"
+ add_foreign_key :lessons_students, :students
+ end
+
+ create_table :overloaded_types, force: true do |t|
+ t.float :overloaded_float, default: 500
+ t.float :unoverloaded_float
+ t.string :overloaded_string_with_limit, limit: 255
+ t.string :string_with_default, default: 'the original default'
+ end
+end
+
+Course.connection.create_table :courses, force: true do |t|
+ t.column :name, :string, null: false
+ t.column :college_id, :integer
+end
+
+College.connection.create_table :colleges, force: true do |t|
+ t.column :name, :string, null: false
+end
diff --git a/activerecord/test/schema/sqlite_specific_schema.rb b/activerecord/test/schema/sqlite_specific_schema.rb
new file mode 100644
index 0000000000..b5552c2755
--- /dev/null
+++ b/activerecord/test/schema/sqlite_specific_schema.rb
@@ -0,0 +1,22 @@
+ActiveRecord::Schema.define do
+ create_table :table_with_autoincrement, :force => true do |t|
+ t.column :name, :string
+ end
+
+ execute "DROP TABLE fk_test_has_fk" rescue nil
+ execute "DROP TABLE fk_test_has_pk" rescue nil
+ execute <<_SQL
+ CREATE TABLE 'fk_test_has_pk' (
+ 'pk_id' INTEGER NOT NULL PRIMARY KEY
+ );
+_SQL
+
+ execute <<_SQL
+ CREATE TABLE 'fk_test_has_fk' (
+ 'id' INTEGER NOT NULL PRIMARY KEY,
+ 'fk_id' INTEGER NOT NULL,
+
+ FOREIGN KEY ('fk_id') REFERENCES 'fk_test_has_pk'('pk_id')
+ );
+_SQL
+end