activerecord 4.2.9 → 5.2.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +614 -1572
- data/MIT-LICENSE +2 -2
- data/README.rdoc +10 -11
- data/examples/performance.rb +32 -31
- data/examples/simple.rb +5 -4
- data/lib/active_record/aggregations.rb +263 -249
- data/lib/active_record/association_relation.rb +11 -6
- data/lib/active_record/associations/alias_tracker.rb +29 -35
- data/lib/active_record/associations/association.rb +77 -43
- data/lib/active_record/associations/association_scope.rb +106 -133
- data/lib/active_record/associations/belongs_to_association.rb +52 -41
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -8
- data/lib/active_record/associations/builder/association.rb +29 -38
- data/lib/active_record/associations/builder/belongs_to.rb +77 -30
- data/lib/active_record/associations/builder/collection_association.rb +9 -22
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +42 -35
- data/lib/active_record/associations/builder/has_many.rb +6 -4
- data/lib/active_record/associations/builder/has_one.rb +13 -6
- data/lib/active_record/associations/builder/singular_association.rb +15 -11
- data/lib/active_record/associations/collection_association.rb +139 -280
- data/lib/active_record/associations/collection_proxy.rb +231 -133
- data/lib/active_record/associations/foreign_association.rb +3 -1
- data/lib/active_record/associations/has_many_association.rb +34 -89
- data/lib/active_record/associations/has_many_through_association.rb +49 -76
- data/lib/active_record/associations/has_one_association.rb +38 -24
- data/lib/active_record/associations/has_one_through_association.rb +18 -9
- data/lib/active_record/associations/join_dependency/join_association.rb +40 -89
- data/lib/active_record/associations/join_dependency/join_base.rb +10 -9
- data/lib/active_record/associations/join_dependency/join_part.rb +12 -12
- data/lib/active_record/associations/join_dependency.rb +133 -159
- data/lib/active_record/associations/preloader/association.rb +85 -120
- data/lib/active_record/associations/preloader/through_association.rb +85 -74
- data/lib/active_record/associations/preloader.rb +81 -91
- data/lib/active_record/associations/singular_association.rb +27 -34
- data/lib/active_record/associations/through_association.rb +38 -18
- data/lib/active_record/associations.rb +1732 -1597
- data/lib/active_record/attribute_assignment.rb +58 -182
- data/lib/active_record/attribute_decorators.rb +39 -15
- data/lib/active_record/attribute_methods/before_type_cast.rb +10 -8
- data/lib/active_record/attribute_methods/dirty.rb +94 -135
- data/lib/active_record/attribute_methods/primary_key.rb +86 -71
- data/lib/active_record/attribute_methods/query.rb +4 -2
- data/lib/active_record/attribute_methods/read.rb +45 -63
- data/lib/active_record/attribute_methods/serialization.rb +40 -20
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +58 -36
- data/lib/active_record/attribute_methods/write.rb +30 -45
- data/lib/active_record/attribute_methods.rb +166 -109
- data/lib/active_record/attributes.rb +201 -82
- data/lib/active_record/autosave_association.rb +94 -36
- data/lib/active_record/base.rb +57 -44
- data/lib/active_record/callbacks.rb +97 -57
- data/lib/active_record/coders/json.rb +3 -1
- data/lib/active_record/coders/yaml_column.rb +24 -12
- data/lib/active_record/collection_cache_key.rb +53 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +712 -290
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +10 -5
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +237 -90
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +71 -21
- data/lib/active_record/connection_adapters/abstract/quoting.rb +118 -52
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +5 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +67 -46
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +318 -217
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +81 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +570 -228
- data/lib/active_record/connection_adapters/abstract/transaction.rb +138 -70
- data/lib/active_record/connection_adapters/abstract_adapter.rb +325 -202
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +542 -593
- data/lib/active_record/connection_adapters/column.rb +50 -41
- data/lib/active_record/connection_adapters/connection_specification.rb +147 -135
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +33 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +140 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +87 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +80 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +148 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +41 -188
- data/lib/active_record/connection_adapters/postgresql/column.rb +35 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +45 -114
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +50 -58
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +10 -6
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +4 -2
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +13 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +9 -22
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +5 -3
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +31 -19
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +3 -11
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +7 -9
- data/lib/active_record/connection_adapters/postgresql/oid/{integer.rb → oid.rb} +6 -2
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +33 -11
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +52 -34
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -5
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +55 -53
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +5 -3
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid.rb +23 -25
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +107 -47
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +27 -14
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +65 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +144 -90
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +462 -284
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +12 -8
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +432 -323
- data/lib/active_record/connection_adapters/schema_cache.rb +48 -24
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +67 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +106 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +269 -308
- data/lib/active_record/connection_adapters/statement_pool.rb +34 -13
- data/lib/active_record/connection_handling.rb +40 -27
- data/lib/active_record/core.rb +178 -198
- data/lib/active_record/counter_cache.rb +79 -36
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +87 -105
- data/lib/active_record/enum.rb +135 -88
- data/lib/active_record/errors.rb +179 -52
- data/lib/active_record/explain.rb +23 -11
- data/lib/active_record/explain_registry.rb +4 -2
- data/lib/active_record/explain_subscriber.rb +10 -5
- data/lib/active_record/fixture_set/file.rb +35 -9
- data/lib/active_record/fixtures.rb +188 -132
- data/lib/active_record/gem_version.rb +4 -2
- data/lib/active_record/inheritance.rb +148 -112
- data/lib/active_record/integration.rb +70 -28
- data/lib/active_record/internal_metadata.rb +45 -0
- data/lib/active_record/legacy_yaml_adapter.rb +21 -3
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +88 -96
- data/lib/active_record/locking/pessimistic.rb +15 -3
- data/lib/active_record/log_subscriber.rb +95 -33
- data/lib/active_record/migration/command_recorder.rb +133 -90
- data/lib/active_record/migration/compatibility.rb +217 -0
- data/lib/active_record/migration/join_table.rb +8 -6
- data/lib/active_record/migration.rb +581 -282
- data/lib/active_record/model_schema.rb +290 -111
- data/lib/active_record/nested_attributes.rb +264 -222
- data/lib/active_record/no_touching.rb +7 -1
- data/lib/active_record/null_relation.rb +24 -37
- data/lib/active_record/persistence.rb +347 -119
- data/lib/active_record/query_cache.rb +13 -24
- data/lib/active_record/querying.rb +19 -17
- data/lib/active_record/railtie.rb +94 -32
- data/lib/active_record/railties/console_sandbox.rb +2 -0
- data/lib/active_record/railties/controller_runtime.rb +9 -3
- data/lib/active_record/railties/databases.rake +149 -156
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +414 -267
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/batches.rb +204 -55
- data/lib/active_record/relation/calculations.rb +256 -248
- data/lib/active_record/relation/delegation.rb +67 -60
- data/lib/active_record/relation/finder_methods.rb +288 -239
- data/lib/active_record/relation/from_clause.rb +26 -0
- data/lib/active_record/relation/merger.rb +86 -86
- data/lib/active_record/relation/predicate_builder/array_handler.rb +24 -24
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +56 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +42 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +7 -1
- data/lib/active_record/relation/predicate_builder.rb +116 -119
- data/lib/active_record/relation/query_attribute.rb +45 -0
- data/lib/active_record/relation/query_methods.rb +448 -393
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +11 -13
- data/lib/active_record/relation/where_clause.rb +186 -0
- data/lib/active_record/relation/where_clause_factory.rb +34 -0
- data/lib/active_record/relation.rb +287 -340
- data/lib/active_record/result.rb +54 -36
- data/lib/active_record/runtime_registry.rb +6 -4
- data/lib/active_record/sanitization.rb +155 -124
- data/lib/active_record/schema.rb +30 -24
- data/lib/active_record/schema_dumper.rb +91 -87
- data/lib/active_record/schema_migration.rb +19 -16
- data/lib/active_record/scoping/default.rb +102 -85
- data/lib/active_record/scoping/named.rb +81 -32
- data/lib/active_record/scoping.rb +45 -26
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +5 -5
- data/lib/active_record/statement_cache.rb +45 -35
- data/lib/active_record/store.rb +42 -36
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +82 -0
- data/lib/active_record/tasks/database_tasks.rb +134 -96
- data/lib/active_record/tasks/mysql_database_tasks.rb +56 -100
- data/lib/active_record/tasks/postgresql_database_tasks.rb +83 -41
- data/lib/active_record/tasks/sqlite_database_tasks.rb +44 -16
- data/lib/active_record/timestamp.rb +70 -38
- data/lib/active_record/touch_later.rb +64 -0
- data/lib/active_record/transactions.rb +199 -124
- data/lib/active_record/translation.rb +2 -0
- data/lib/active_record/type/adapter_specific_registry.rb +136 -0
- data/lib/active_record/type/date.rb +4 -45
- data/lib/active_record/type/date_time.rb +4 -49
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +5 -3
- data/lib/active_record/type/internal/timezone.rb +17 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +24 -15
- data/lib/active_record/type/text.rb +2 -2
- data/lib/active_record/type/time.rb +11 -16
- data/lib/active_record/type/type_map.rb +15 -17
- data/lib/active_record/type/unsigned_integer.rb +9 -7
- data/lib/active_record/type.rb +79 -23
- data/lib/active_record/type_caster/connection.rb +33 -0
- data/lib/active_record/type_caster/map.rb +23 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +13 -4
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +14 -13
- data/lib/active_record/validations/uniqueness.rb +40 -41
- data/lib/active_record/validations.rb +38 -35
- data/lib/active_record/version.rb +3 -1
- data/lib/active_record.rb +34 -22
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +43 -35
- data/lib/rails/generators/active_record/migration/templates/{create_table_migration.rb → create_table_migration.rb.tt} +8 -3
- data/lib/rails/generators/active_record/migration/templates/{migration.rb → migration.rb.tt} +8 -1
- data/lib/rails/generators/active_record/migration.rb +18 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +18 -22
- data/lib/rails/generators/active_record/model/templates/{model.rb → model.rb.tt} +3 -0
- data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
- data/lib/rails/generators/active_record.rb +7 -5
- metadata +72 -50
- data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
- data/lib/active_record/associations/preloader/collection_association.rb +0 -24
- data/lib/active_record/associations/preloader/has_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -19
- data/lib/active_record/associations/preloader/has_one.rb +0 -23
- data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
- data/lib/active_record/associations/preloader/singular_association.rb +0 -21
- data/lib/active_record/attribute.rb +0 -163
- data/lib/active_record/attribute_set/builder.rb +0 -106
- data/lib/active_record/attribute_set.rb +0 -81
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -491
- data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
- data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
- data/lib/active_record/connection_adapters/postgresql/oid/infinity.rb +0 -13
- data/lib/active_record/connection_adapters/postgresql/oid/json.rb +0 -35
- data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -193
- data/lib/active_record/type/big_integer.rb +0 -13
- data/lib/active_record/type/binary.rb +0 -50
- data/lib/active_record/type/boolean.rb +0 -31
- data/lib/active_record/type/decimal.rb +0 -64
- data/lib/active_record/type/decorator.rb +0 -14
- data/lib/active_record/type/float.rb +0 -19
- data/lib/active_record/type/integer.rb +0 -59
- data/lib/active_record/type/mutable.rb +0 -16
- data/lib/active_record/type/numeric.rb +0 -36
- data/lib/active_record/type/string.rb +0 -40
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -110
@@ -0,0 +1,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
module ConnectionAdapters
|
5
|
+
module PostgreSQL
|
6
|
+
class SchemaCreation < AbstractAdapter::SchemaCreation # :nodoc:
|
7
|
+
private
|
8
|
+
def visit_AlterTable(o)
|
9
|
+
super << o.constraint_validations.map { |fk| visit_ValidateConstraint fk }.join(" ")
|
10
|
+
end
|
11
|
+
|
12
|
+
def visit_AddForeignKey(o)
|
13
|
+
super.dup.tap { |sql| sql << " NOT VALID" unless o.validate? }
|
14
|
+
end
|
15
|
+
|
16
|
+
def visit_ValidateConstraint(name)
|
17
|
+
"VALIDATE CONSTRAINT #{quote_column_name(name)}"
|
18
|
+
end
|
19
|
+
|
20
|
+
def visit_ChangeColumnDefinition(o)
|
21
|
+
column = o.column
|
22
|
+
column.sql_type = type_to_sql(column.type, column.options)
|
23
|
+
quoted_column_name = quote_column_name(o.name)
|
24
|
+
|
25
|
+
change_column_sql = "ALTER COLUMN #{quoted_column_name} TYPE #{column.sql_type}".dup
|
26
|
+
|
27
|
+
options = column_options(column)
|
28
|
+
|
29
|
+
if options[:collation]
|
30
|
+
change_column_sql << " COLLATE \"#{options[:collation]}\""
|
31
|
+
end
|
32
|
+
|
33
|
+
if options[:using]
|
34
|
+
change_column_sql << " USING #{options[:using]}"
|
35
|
+
elsif options[:cast_as]
|
36
|
+
cast_as_type = type_to_sql(options[:cast_as], options)
|
37
|
+
change_column_sql << " USING CAST(#{quoted_column_name} AS #{cast_as_type})"
|
38
|
+
end
|
39
|
+
|
40
|
+
if options.key?(:default)
|
41
|
+
if options[:default].nil?
|
42
|
+
change_column_sql << ", ALTER COLUMN #{quoted_column_name} DROP DEFAULT"
|
43
|
+
else
|
44
|
+
quoted_default = quote_default_expression(options[:default], column)
|
45
|
+
change_column_sql << ", ALTER COLUMN #{quoted_column_name} SET DEFAULT #{quoted_default}"
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
if options.key?(:null)
|
50
|
+
change_column_sql << ", ALTER COLUMN #{quoted_column_name} #{options[:null] ? 'DROP' : 'SET'} NOT NULL"
|
51
|
+
end
|
52
|
+
|
53
|
+
change_column_sql
|
54
|
+
end
|
55
|
+
|
56
|
+
def add_column_options!(sql, options)
|
57
|
+
if options[:collation]
|
58
|
+
sql << " COLLATE \"#{options[:collation]}\""
|
59
|
+
end
|
60
|
+
super
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -1,152 +1,206 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module ConnectionAdapters
|
3
5
|
module PostgreSQL
|
4
6
|
module ColumnMethods
|
5
|
-
|
6
|
-
|
7
|
-
|
7
|
+
# Defines the primary key field.
|
8
|
+
# Use of the native PostgreSQL UUID type is supported, and can be used
|
9
|
+
# by defining your tables as such:
|
10
|
+
#
|
11
|
+
# create_table :stuffs, id: :uuid do |t|
|
12
|
+
# t.string :content
|
13
|
+
# t.timestamps
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# By default, this will use the +gen_random_uuid()+ function from the
|
17
|
+
# +pgcrypto+ extension. As that extension is only available in
|
18
|
+
# PostgreSQL 9.4+, for earlier versions an explicit default can be set
|
19
|
+
# to use +uuid_generate_v4()+ from the +uuid-ossp+ extension instead:
|
20
|
+
#
|
21
|
+
# create_table :stuffs, id: false do |t|
|
22
|
+
# t.primary_key :id, :uuid, default: "uuid_generate_v4()"
|
23
|
+
# t.uuid :foo_id
|
24
|
+
# t.timestamps
|
25
|
+
# end
|
26
|
+
#
|
27
|
+
# To enable the appropriate extension, which is a requirement, use
|
28
|
+
# the +enable_extension+ method in your migrations.
|
29
|
+
#
|
30
|
+
# To use a UUID primary key without any of the extensions, set the
|
31
|
+
# +:default+ option to +nil+:
|
32
|
+
#
|
33
|
+
# create_table :stuffs, id: false do |t|
|
34
|
+
# t.primary_key :id, :uuid, default: nil
|
35
|
+
# t.uuid :foo_id
|
36
|
+
# t.timestamps
|
37
|
+
# end
|
38
|
+
#
|
39
|
+
# You may also pass a custom stored procedure that returns a UUID or use a
|
40
|
+
# different UUID generation function from another library.
|
41
|
+
#
|
42
|
+
# Note that setting the UUID primary key default value to +nil+ will
|
43
|
+
# require you to assure that you always provide a UUID value before saving
|
44
|
+
# a record (as primary keys cannot be +nil+). This might be done via the
|
45
|
+
# +SecureRandom.uuid+ method and a +before_save+ callback, for instance.
|
46
|
+
def primary_key(name, type = :primary_key, **options)
|
47
|
+
if type == :uuid
|
48
|
+
options[:default] = options.fetch(:default, "gen_random_uuid()")
|
49
|
+
end
|
50
|
+
|
51
|
+
super
|
8
52
|
end
|
9
53
|
|
10
|
-
def
|
11
|
-
options
|
12
|
-
column(args[0], :tsvector, options)
|
54
|
+
def bigserial(*args, **options)
|
55
|
+
args.each { |name| column(name, :bigserial, options) }
|
13
56
|
end
|
14
57
|
|
15
|
-
def
|
16
|
-
column(name, :
|
58
|
+
def bit(*args, **options)
|
59
|
+
args.each { |name| column(name, :bit, options) }
|
17
60
|
end
|
18
61
|
|
19
|
-
def
|
20
|
-
column(name, :
|
62
|
+
def bit_varying(*args, **options)
|
63
|
+
args.each { |name| column(name, :bit_varying, options) }
|
21
64
|
end
|
22
65
|
|
23
|
-
def
|
24
|
-
column(name, :
|
66
|
+
def cidr(*args, **options)
|
67
|
+
args.each { |name| column(name, :cidr, options) }
|
25
68
|
end
|
26
69
|
|
27
|
-
def
|
28
|
-
column(name, :
|
70
|
+
def citext(*args, **options)
|
71
|
+
args.each { |name| column(name, :citext, options) }
|
29
72
|
end
|
30
73
|
|
31
|
-
def
|
32
|
-
column(name, :
|
74
|
+
def daterange(*args, **options)
|
75
|
+
args.each { |name| column(name, :daterange, options) }
|
33
76
|
end
|
34
77
|
|
35
|
-
def
|
36
|
-
column(name, :
|
78
|
+
def hstore(*args, **options)
|
79
|
+
args.each { |name| column(name, :hstore, options) }
|
37
80
|
end
|
38
81
|
|
39
|
-
def
|
40
|
-
column(name, :
|
82
|
+
def inet(*args, **options)
|
83
|
+
args.each { |name| column(name, :inet, options) }
|
41
84
|
end
|
42
85
|
|
43
|
-
def
|
44
|
-
column(name, :
|
86
|
+
def interval(*args, **options)
|
87
|
+
args.each { |name| column(name, :interval, options) }
|
45
88
|
end
|
46
89
|
|
47
|
-
def
|
48
|
-
column(name, :
|
90
|
+
def int4range(*args, **options)
|
91
|
+
args.each { |name| column(name, :int4range, options) }
|
49
92
|
end
|
50
93
|
|
51
|
-
def
|
52
|
-
column(name, :
|
94
|
+
def int8range(*args, **options)
|
95
|
+
args.each { |name| column(name, :int8range, options) }
|
53
96
|
end
|
54
97
|
|
55
|
-
def
|
56
|
-
column(name, :
|
98
|
+
def jsonb(*args, **options)
|
99
|
+
args.each { |name| column(name, :jsonb, options) }
|
57
100
|
end
|
58
101
|
|
59
|
-
def
|
60
|
-
column(name, :
|
102
|
+
def ltree(*args, **options)
|
103
|
+
args.each { |name| column(name, :ltree, options) }
|
61
104
|
end
|
62
105
|
|
63
|
-
def
|
64
|
-
column(name, :
|
106
|
+
def macaddr(*args, **options)
|
107
|
+
args.each { |name| column(name, :macaddr, options) }
|
65
108
|
end
|
66
109
|
|
67
|
-
def
|
68
|
-
column(name, :
|
110
|
+
def money(*args, **options)
|
111
|
+
args.each { |name| column(name, :money, options) }
|
69
112
|
end
|
70
113
|
|
71
|
-
def
|
72
|
-
column(name, :
|
114
|
+
def numrange(*args, **options)
|
115
|
+
args.each { |name| column(name, :numrange, options) }
|
73
116
|
end
|
74
117
|
|
75
|
-
def
|
76
|
-
column(name, :
|
118
|
+
def oid(*args, **options)
|
119
|
+
args.each { |name| column(name, :oid, options) }
|
77
120
|
end
|
78
121
|
|
79
|
-
def
|
80
|
-
column(name, :
|
122
|
+
def point(*args, **options)
|
123
|
+
args.each { |name| column(name, :point, options) }
|
81
124
|
end
|
82
125
|
|
83
|
-
def
|
84
|
-
column(name, :
|
126
|
+
def line(*args, **options)
|
127
|
+
args.each { |name| column(name, :line, options) }
|
85
128
|
end
|
86
129
|
|
87
|
-
def
|
88
|
-
column(name, :
|
130
|
+
def lseg(*args, **options)
|
131
|
+
args.each { |name| column(name, :lseg, options) }
|
89
132
|
end
|
90
|
-
end
|
91
133
|
|
92
|
-
|
93
|
-
|
94
|
-
|
134
|
+
def box(*args, **options)
|
135
|
+
args.each { |name| column(name, :box, options) }
|
136
|
+
end
|
95
137
|
|
96
|
-
|
97
|
-
|
138
|
+
def path(*args, **options)
|
139
|
+
args.each { |name| column(name, :path, options) }
|
140
|
+
end
|
98
141
|
|
99
|
-
|
100
|
-
|
101
|
-
# by defining your tables as such:
|
102
|
-
#
|
103
|
-
# create_table :stuffs, id: :uuid do |t|
|
104
|
-
# t.string :content
|
105
|
-
# t.timestamps
|
106
|
-
# end
|
107
|
-
#
|
108
|
-
# By default, this will use the +uuid_generate_v4()+ function from the
|
109
|
-
# +uuid-ossp+ extension, which MUST be enabled on your database. To enable
|
110
|
-
# the +uuid-ossp+ extension, you can use the +enable_extension+ method in your
|
111
|
-
# migrations. To use a UUID primary key without +uuid-ossp+ enabled, you can
|
112
|
-
# set the +:default+ option to +nil+:
|
113
|
-
#
|
114
|
-
# create_table :stuffs, id: false do |t|
|
115
|
-
# t.primary_key :id, :uuid, default: nil
|
116
|
-
# t.uuid :foo_id
|
117
|
-
# t.timestamps
|
118
|
-
# end
|
119
|
-
#
|
120
|
-
# You may also pass a different UUID generation function from +uuid-ossp+
|
121
|
-
# or another library.
|
122
|
-
#
|
123
|
-
# Note that setting the UUID primary key default value to +nil+ will
|
124
|
-
# require you to assure that you always provide a UUID value before saving
|
125
|
-
# a record (as primary keys cannot be +nil+). This might be done via the
|
126
|
-
# +SecureRandom.uuid+ method and a +before_save+ callback, for instance.
|
127
|
-
def primary_key(name, type = :primary_key, options = {})
|
128
|
-
return super unless type == :uuid
|
129
|
-
options[:default] = options.fetch(:default, 'uuid_generate_v4()')
|
130
|
-
options[:primary_key] = true
|
131
|
-
column name, type, options
|
142
|
+
def polygon(*args, **options)
|
143
|
+
args.each { |name| column(name, :polygon, options) }
|
132
144
|
end
|
133
145
|
|
134
|
-
def
|
135
|
-
column
|
136
|
-
column.array = options[:array]
|
137
|
-
column
|
146
|
+
def circle(*args, **options)
|
147
|
+
args.each { |name| column(name, :circle, options) }
|
138
148
|
end
|
139
149
|
|
140
|
-
|
150
|
+
def serial(*args, **options)
|
151
|
+
args.each { |name| column(name, :serial, options) }
|
152
|
+
end
|
153
|
+
|
154
|
+
def tsrange(*args, **options)
|
155
|
+
args.each { |name| column(name, :tsrange, options) }
|
156
|
+
end
|
157
|
+
|
158
|
+
def tstzrange(*args, **options)
|
159
|
+
args.each { |name| column(name, :tstzrange, options) }
|
160
|
+
end
|
161
|
+
|
162
|
+
def tsvector(*args, **options)
|
163
|
+
args.each { |name| column(name, :tsvector, options) }
|
164
|
+
end
|
165
|
+
|
166
|
+
def uuid(*args, **options)
|
167
|
+
args.each { |name| column(name, :uuid, options) }
|
168
|
+
end
|
169
|
+
|
170
|
+
def xml(*args, **options)
|
171
|
+
args.each { |name| column(name, :xml, options) }
|
172
|
+
end
|
173
|
+
end
|
141
174
|
|
142
|
-
|
143
|
-
|
175
|
+
class TableDefinition < ActiveRecord::ConnectionAdapters::TableDefinition
|
176
|
+
include ColumnMethods
|
177
|
+
|
178
|
+
private
|
179
|
+
def integer_like_primary_key_type(type, options)
|
180
|
+
if type == :bigint || options[:limit] == 8
|
181
|
+
:bigserial
|
182
|
+
else
|
183
|
+
:serial
|
184
|
+
end
|
144
185
|
end
|
145
186
|
end
|
146
187
|
|
147
188
|
class Table < ActiveRecord::ConnectionAdapters::Table
|
148
189
|
include ColumnMethods
|
149
190
|
end
|
191
|
+
|
192
|
+
class AlterTable < ActiveRecord::ConnectionAdapters::AlterTable
|
193
|
+
attr_reader :constraint_validations
|
194
|
+
|
195
|
+
def initialize(td)
|
196
|
+
super
|
197
|
+
@constraint_validations = []
|
198
|
+
end
|
199
|
+
|
200
|
+
def validate_constraint(name)
|
201
|
+
@constraint_validations << name
|
202
|
+
end
|
203
|
+
end
|
150
204
|
end
|
151
205
|
end
|
152
206
|
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
module ConnectionAdapters
|
5
|
+
module PostgreSQL
|
6
|
+
class SchemaDumper < ConnectionAdapters::SchemaDumper # :nodoc:
|
7
|
+
private
|
8
|
+
|
9
|
+
def extensions(stream)
|
10
|
+
extensions = @connection.extensions
|
11
|
+
if extensions.any?
|
12
|
+
stream.puts " # These are extensions that must be enabled in order to support this database"
|
13
|
+
extensions.sort.each do |extension|
|
14
|
+
stream.puts " enable_extension #{extension.inspect}"
|
15
|
+
end
|
16
|
+
stream.puts
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def prepare_column_options(column)
|
21
|
+
spec = super
|
22
|
+
spec[:array] = "true" if column.array?
|
23
|
+
spec
|
24
|
+
end
|
25
|
+
|
26
|
+
def default_primary_key?(column)
|
27
|
+
schema_type(column) == :bigserial
|
28
|
+
end
|
29
|
+
|
30
|
+
def explicit_primary_key_default?(column)
|
31
|
+
column.type == :uuid || (column.type == :integer && !column.serial?)
|
32
|
+
end
|
33
|
+
|
34
|
+
def schema_type(column)
|
35
|
+
return super unless column.serial?
|
36
|
+
|
37
|
+
if column.bigint?
|
38
|
+
:bigserial
|
39
|
+
else
|
40
|
+
:serial
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def schema_expression(column)
|
45
|
+
super unless column.serial?
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|