activerecord 4.2.0 → 5.2.8.1
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 +640 -928
- 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 +264 -247
- data/lib/active_record/association_relation.rb +24 -6
- data/lib/active_record/associations/alias_tracker.rb +29 -35
- data/lib/active_record/associations/association.rb +87 -41
- data/lib/active_record/associations/association_scope.rb +106 -132
- data/lib/active_record/associations/belongs_to_association.rb +55 -36
- 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 +14 -23
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +50 -39
- 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 +145 -266
- data/lib/active_record/associations/collection_proxy.rb +242 -138
- data/lib/active_record/associations/foreign_association.rb +13 -0
- data/lib/active_record/associations/has_many_association.rb +35 -75
- data/lib/active_record/associations/has_many_through_association.rb +51 -69
- data/lib/active_record/associations/has_one_association.rb +39 -24
- data/lib/active_record/associations/has_one_through_association.rb +18 -9
- data/lib/active_record/associations/join_dependency/join_association.rb +40 -81
- 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 +134 -154
- data/lib/active_record/associations/preloader/association.rb +85 -116
- data/lib/active_record/associations/preloader/through_association.rb +85 -74
- data/lib/active_record/associations/preloader.rb +83 -93
- data/lib/active_record/associations/singular_association.rb +27 -40
- data/lib/active_record/associations/through_association.rb +48 -23
- data/lib/active_record/associations.rb +1732 -1596
- 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 +12 -5
- data/lib/active_record/attribute_methods/dirty.rb +94 -125
- 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 +62 -36
- data/lib/active_record/attribute_methods/write.rb +31 -46
- data/lib/active_record/attribute_methods.rb +170 -117
- data/lib/active_record/attributes.rb +201 -74
- data/lib/active_record/autosave_association.rb +118 -45
- data/lib/active_record/base.rb +60 -48
- 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 +37 -13
- data/lib/active_record/collection_cache_key.rb +53 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +712 -284
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +10 -5
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +254 -87
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +72 -22
- data/lib/active_record/connection_adapters/abstract/quoting.rb +119 -52
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +6 -4
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +67 -46
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +328 -217
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +81 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +617 -212
- data/lib/active_record/connection_adapters/abstract/transaction.rb +139 -75
- data/lib/active_record/connection_adapters/abstract_adapter.rb +332 -191
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +567 -563
- 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 +42 -195
- data/lib/active_record/connection_adapters/postgresql/column.rb +35 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +46 -115
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +50 -57
- 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 +5 -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 -13
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +7 -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 -1
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +65 -51
- 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 +466 -280
- 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 +439 -330
- 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 -324
- 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 +205 -202
- data/lib/active_record/counter_cache.rb +80 -37
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +87 -105
- data/lib/active_record/enum.rb +136 -90
- data/lib/active_record/errors.rb +180 -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 +11 -6
- data/lib/active_record/fixture_set/file.rb +35 -9
- data/lib/active_record/fixtures.rb +193 -135
- data/lib/active_record/gem_version.rb +5 -3
- 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 +48 -0
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +92 -98
- 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 +594 -267
- data/lib/active_record/model_schema.rb +292 -111
- data/lib/active_record/nested_attributes.rb +266 -214
- data/lib/active_record/no_touching.rb +8 -2
- data/lib/active_record/null_relation.rb +24 -37
- data/lib/active_record/persistence.rb +350 -119
- data/lib/active_record/query_cache.rb +13 -24
- data/lib/active_record/querying.rb +19 -17
- data/lib/active_record/railtie.rb +117 -35
- 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 +160 -174
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +447 -288
- 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 +259 -244
- data/lib/active_record/relation/delegation.rb +67 -60
- data/lib/active_record/relation/finder_methods.rb +290 -253
- data/lib/active_record/relation/from_clause.rb +26 -0
- data/lib/active_record/relation/merger.rb +91 -68
- data/lib/active_record/relation/predicate_builder/array_handler.rb +24 -23
- 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 +118 -92
- data/lib/active_record/relation/query_attribute.rb +45 -0
- data/lib/active_record/relation/query_methods.rb +446 -389
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +18 -16
- 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 -339
- 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 -19
- data/lib/active_record/scoping/default.rb +102 -84
- 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 +136 -95
- data/lib/active_record/tasks/mysql_database_tasks.rb +59 -89
- data/lib/active_record/tasks/postgresql_database_tasks.rb +84 -31
- 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 +208 -123
- 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 -41
- data/lib/active_record/type/date_time.rb +4 -38
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +13 -5
- 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 +30 -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 +41 -32
- data/lib/active_record/validations.rb +38 -35
- data/lib/active_record/version.rb +3 -1
- data/lib/active_record.rb +36 -21
- 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 -6
- data/lib/rails/generators/active_record/migration/templates/{migration.rb → migration.rb.tt} +8 -7
- 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.rb +7 -5
- metadata +77 -53
- 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 -149
- data/lib/active_record/attribute_set/builder.rb +0 -86
- data/lib/active_record/attribute_set.rb +0 -77
- 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 -30
- data/lib/active_record/type/decimal.rb +0 -40
- 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 -55
- 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 -36
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -101
- /data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
@@ -1,58 +1,123 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "monitor"
|
4
|
+
|
1
5
|
module ActiveRecord
|
2
6
|
module ModelSchema
|
3
7
|
extend ActiveSupport::Concern
|
4
8
|
|
9
|
+
##
|
10
|
+
# :singleton-method: primary_key_prefix_type
|
11
|
+
# :call-seq: primary_key_prefix_type
|
12
|
+
#
|
13
|
+
# The prefix type that will be prepended to every primary key column name.
|
14
|
+
# The options are +:table_name+ and +:table_name_with_underscore+. If the first is specified,
|
15
|
+
# the Product class will look for "productid" instead of "id" as the primary column. If the
|
16
|
+
# latter is specified, the Product class will look for "product_id" instead of "id". Remember
|
17
|
+
# that this is a global setting for all Active Records.
|
18
|
+
|
19
|
+
##
|
20
|
+
# :singleton-method: primary_key_prefix_type=
|
21
|
+
# :call-seq: primary_key_prefix_type=(prefix_type)
|
22
|
+
#
|
23
|
+
# Sets the prefix type that will be prepended to every primary key column name.
|
24
|
+
# The options are +:table_name+ and +:table_name_with_underscore+. If the first is specified,
|
25
|
+
# the Product class will look for "productid" instead of "id" as the primary column. If the
|
26
|
+
# latter is specified, the Product class will look for "product_id" instead of "id". Remember
|
27
|
+
# that this is a global setting for all Active Records.
|
28
|
+
|
29
|
+
##
|
30
|
+
# :singleton-method: table_name_prefix
|
31
|
+
# :call-seq: table_name_prefix
|
32
|
+
#
|
33
|
+
# The prefix string to prepend to every table name.
|
34
|
+
|
35
|
+
##
|
36
|
+
# :singleton-method: table_name_prefix=
|
37
|
+
# :call-seq: table_name_prefix=(prefix)
|
38
|
+
#
|
39
|
+
# Sets the prefix string to prepend to every table name. So if set to "basecamp_", all table
|
40
|
+
# names will be named like "basecamp_projects", "basecamp_people", etc. This is a convenient
|
41
|
+
# way of creating a namespace for tables in a shared database. By default, the prefix is the
|
42
|
+
# empty string.
|
43
|
+
#
|
44
|
+
# If you are organising your models within modules you can add a prefix to the models within
|
45
|
+
# a namespace by defining a singleton method in the parent module called table_name_prefix which
|
46
|
+
# returns your chosen prefix.
|
47
|
+
|
48
|
+
##
|
49
|
+
# :singleton-method: table_name_suffix
|
50
|
+
# :call-seq: table_name_suffix
|
51
|
+
#
|
52
|
+
# The suffix string to append to every table name.
|
53
|
+
|
54
|
+
##
|
55
|
+
# :singleton-method: table_name_suffix=
|
56
|
+
# :call-seq: table_name_suffix=(suffix)
|
57
|
+
#
|
58
|
+
# Works like +table_name_prefix=+, but appends instead of prepends (set to "_basecamp" gives "projects_basecamp",
|
59
|
+
# "people_basecamp"). By default, the suffix is the empty string.
|
60
|
+
#
|
61
|
+
# If you are organising your models within modules, you can add a suffix to the models within
|
62
|
+
# a namespace by defining a singleton method in the parent module called table_name_suffix which
|
63
|
+
# returns your chosen suffix.
|
64
|
+
|
65
|
+
##
|
66
|
+
# :singleton-method: schema_migrations_table_name
|
67
|
+
# :call-seq: schema_migrations_table_name
|
68
|
+
#
|
69
|
+
# The name of the schema migrations table. By default, the value is <tt>"schema_migrations"</tt>.
|
70
|
+
|
71
|
+
##
|
72
|
+
# :singleton-method: schema_migrations_table_name=
|
73
|
+
# :call-seq: schema_migrations_table_name=(table_name)
|
74
|
+
#
|
75
|
+
# Sets the name of the schema migrations table.
|
76
|
+
|
77
|
+
##
|
78
|
+
# :singleton-method: internal_metadata_table_name
|
79
|
+
# :call-seq: internal_metadata_table_name
|
80
|
+
#
|
81
|
+
# The name of the internal metadata table. By default, the value is <tt>"ar_internal_metadata"</tt>.
|
82
|
+
|
83
|
+
##
|
84
|
+
# :singleton-method: internal_metadata_table_name=
|
85
|
+
# :call-seq: internal_metadata_table_name=(table_name)
|
86
|
+
#
|
87
|
+
# Sets the name of the internal metadata table.
|
88
|
+
|
89
|
+
##
|
90
|
+
# :singleton-method: pluralize_table_names
|
91
|
+
# :call-seq: pluralize_table_names
|
92
|
+
#
|
93
|
+
# Indicates whether table names should be the pluralized versions of the corresponding class names.
|
94
|
+
# If true, the default table name for a Product class will be "products". If false, it would just be "product".
|
95
|
+
# See table_name for the full rules on table/class naming. This is true, by default.
|
96
|
+
|
97
|
+
##
|
98
|
+
# :singleton-method: pluralize_table_names=
|
99
|
+
# :call-seq: pluralize_table_names=(value)
|
100
|
+
#
|
101
|
+
# Set whether table names should be the pluralized versions of the corresponding class names.
|
102
|
+
# If true, the default table name for a Product class will be "products". If false, it would just be "product".
|
103
|
+
# See table_name for the full rules on table/class naming. This is true, by default.
|
104
|
+
|
5
105
|
included do
|
6
|
-
##
|
7
|
-
# :singleton-method:
|
8
|
-
# Accessor for the prefix type that will be prepended to every primary key column name.
|
9
|
-
# The options are :table_name and :table_name_with_underscore. If the first is specified,
|
10
|
-
# the Product class will look for "productid" instead of "id" as the primary column. If the
|
11
|
-
# latter is specified, the Product class will look for "product_id" instead of "id". Remember
|
12
|
-
# that this is a global setting for all Active Records.
|
13
106
|
mattr_accessor :primary_key_prefix_type, instance_writer: false
|
14
107
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
# returns your chosen prefix.
|
25
|
-
class_attribute :table_name_prefix, instance_writer: false
|
26
|
-
self.table_name_prefix = ""
|
27
|
-
|
28
|
-
##
|
29
|
-
# :singleton-method:
|
30
|
-
# Works like +table_name_prefix+, but appends instead of prepends (set to "_basecamp" gives "projects_basecamp",
|
31
|
-
# "people_basecamp"). By default, the suffix is the empty string.
|
32
|
-
#
|
33
|
-
# If you are organising your models within modules, you can add a suffix to the models within
|
34
|
-
# a namespace by defining a singleton method in the parent module called table_name_suffix which
|
35
|
-
# returns your chosen suffix.
|
36
|
-
class_attribute :table_name_suffix, instance_writer: false
|
37
|
-
self.table_name_suffix = ""
|
38
|
-
|
39
|
-
##
|
40
|
-
# :singleton-method:
|
41
|
-
# Accessor for the name of the schema migrations table. By default, the value is "schema_migrations"
|
42
|
-
class_attribute :schema_migrations_table_name, instance_accessor: false
|
43
|
-
self.schema_migrations_table_name = "schema_migrations"
|
44
|
-
|
45
|
-
##
|
46
|
-
# :singleton-method:
|
47
|
-
# Indicates whether table names should be the pluralized versions of the corresponding class names.
|
48
|
-
# If true, the default table name for a Product class will be +products+. If false, it would just be +product+.
|
49
|
-
# See table_name for the full rules on table/class naming. This is true, by default.
|
50
|
-
class_attribute :pluralize_table_names, instance_writer: false
|
51
|
-
self.pluralize_table_names = true
|
52
|
-
|
53
|
-
self.inheritance_column = 'type'
|
108
|
+
class_attribute :table_name_prefix, instance_writer: false, default: ""
|
109
|
+
class_attribute :table_name_suffix, instance_writer: false, default: ""
|
110
|
+
class_attribute :schema_migrations_table_name, instance_accessor: false, default: "schema_migrations"
|
111
|
+
class_attribute :internal_metadata_table_name, instance_accessor: false, default: "ar_internal_metadata"
|
112
|
+
class_attribute :pluralize_table_names, instance_writer: false, default: true
|
113
|
+
|
114
|
+
self.protected_environments = ["production"]
|
115
|
+
self.inheritance_column = "type"
|
116
|
+
self.ignored_columns = [].freeze
|
54
117
|
|
55
118
|
delegate :type_for_attribute, to: :class
|
119
|
+
|
120
|
+
initialize_load_schema_monitor
|
56
121
|
end
|
57
122
|
|
58
123
|
# Derives the join table name for +first_table+ and +second_table+. The
|
@@ -111,17 +176,6 @@ module ActiveRecord
|
|
111
176
|
# class Mouse < ActiveRecord::Base
|
112
177
|
# self.table_name = "mice"
|
113
178
|
# end
|
114
|
-
#
|
115
|
-
# Alternatively, you can override the table_name method to define your
|
116
|
-
# own computation. (Possibly using <tt>super</tt> to manipulate the default
|
117
|
-
# table name.) Example:
|
118
|
-
#
|
119
|
-
# class Post < ActiveRecord::Base
|
120
|
-
# def self.table_name
|
121
|
-
# "special_" + super
|
122
|
-
# end
|
123
|
-
# end
|
124
|
-
# Post.table_name # => "special_posts"
|
125
179
|
def table_name
|
126
180
|
reset_table_name unless defined?(@table_name)
|
127
181
|
@table_name
|
@@ -132,9 +186,6 @@ module ActiveRecord
|
|
132
186
|
# class Project < ActiveRecord::Base
|
133
187
|
# self.table_name = "project"
|
134
188
|
# end
|
135
|
-
#
|
136
|
-
# You can also just define your own <tt>self.table_name</tt> method; see
|
137
|
-
# the documentation for ActiveRecord::Base#table_name.
|
138
189
|
def table_name=(value)
|
139
190
|
value = value && value.to_s
|
140
191
|
|
@@ -147,7 +198,7 @@ module ActiveRecord
|
|
147
198
|
@quoted_table_name = nil
|
148
199
|
@arel_table = nil
|
149
200
|
@sequence_name = nil unless defined?(@explicit_sequence_name) && @explicit_sequence_name
|
150
|
-
@
|
201
|
+
@predicate_builder = nil
|
151
202
|
end
|
152
203
|
|
153
204
|
# Returns a quoted version of the table name, used to construct SQL statements.
|
@@ -167,11 +218,26 @@ module ActiveRecord
|
|
167
218
|
end
|
168
219
|
|
169
220
|
def full_table_name_prefix #:nodoc:
|
170
|
-
(parents.detect{ |p| p.respond_to?(:table_name_prefix) } || self).table_name_prefix
|
221
|
+
(parents.detect { |p| p.respond_to?(:table_name_prefix) } || self).table_name_prefix
|
171
222
|
end
|
172
223
|
|
173
224
|
def full_table_name_suffix #:nodoc:
|
174
|
-
(parents.detect {|p| p.respond_to?(:table_name_suffix) } || self).table_name_suffix
|
225
|
+
(parents.detect { |p| p.respond_to?(:table_name_suffix) } || self).table_name_suffix
|
226
|
+
end
|
227
|
+
|
228
|
+
# The array of names of environments where destructive actions should be prohibited. By default,
|
229
|
+
# the value is <tt>["production"]</tt>.
|
230
|
+
def protected_environments
|
231
|
+
if defined?(@protected_environments)
|
232
|
+
@protected_environments
|
233
|
+
else
|
234
|
+
superclass.protected_environments
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
# Sets an array of names of environments where destructive actions should be prohibited.
|
239
|
+
def protected_environments=(environments)
|
240
|
+
@protected_environments = environments.map(&:to_s)
|
175
241
|
end
|
176
242
|
|
177
243
|
# Defines the name of the table column which will store the class name on single-table
|
@@ -193,6 +259,22 @@ module ActiveRecord
|
|
193
259
|
@explicit_inheritance_column = true
|
194
260
|
end
|
195
261
|
|
262
|
+
# The list of columns names the model should ignore. Ignored columns won't have attribute
|
263
|
+
# accessors defined, and won't be referenced in SQL queries.
|
264
|
+
def ignored_columns
|
265
|
+
if defined?(@ignored_columns)
|
266
|
+
@ignored_columns
|
267
|
+
else
|
268
|
+
superclass.ignored_columns
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
# Sets the columns names the model should ignore. Ignored columns won't have attribute
|
273
|
+
# accessors defined, and won't be referenced in SQL queries.
|
274
|
+
def ignored_columns=(columns)
|
275
|
+
@ignored_columns = columns.map(&:to_s)
|
276
|
+
end
|
277
|
+
|
196
278
|
def sequence_name
|
197
279
|
if base_class == self
|
198
280
|
@sequence_name ||= reset_sequence_name
|
@@ -207,7 +289,7 @@ module ActiveRecord
|
|
207
289
|
end
|
208
290
|
|
209
291
|
# Sets the name of the sequence to use when generating ids to the given
|
210
|
-
# value, or (if the value is nil or false) to the value returned by the
|
292
|
+
# value, or (if the value is +nil+ or +false+) to the value returned by the
|
211
293
|
# given block. This is required for Oracle and is useful for any
|
212
294
|
# database which relies on sequences for primary key generation.
|
213
295
|
#
|
@@ -225,45 +307,96 @@ module ActiveRecord
|
|
225
307
|
@explicit_sequence_name = true
|
226
308
|
end
|
227
309
|
|
310
|
+
# Determines if the primary key values should be selected from their
|
311
|
+
# corresponding sequence before the insert statement.
|
312
|
+
def prefetch_primary_key?
|
313
|
+
connection.prefetch_primary_key?(table_name)
|
314
|
+
end
|
315
|
+
|
316
|
+
# Returns the next value that will be used as the primary key on
|
317
|
+
# an insert statement.
|
318
|
+
def next_sequence_value
|
319
|
+
connection.next_sequence_value(sequence_name)
|
320
|
+
end
|
321
|
+
|
228
322
|
# Indicates whether the table associated with this class exists
|
229
323
|
def table_exists?
|
230
|
-
connection.schema_cache.
|
324
|
+
connection.schema_cache.data_source_exists?(table_name)
|
231
325
|
end
|
232
326
|
|
233
327
|
def attributes_builder # :nodoc:
|
234
|
-
@attributes_builder
|
328
|
+
unless defined?(@attributes_builder) && @attributes_builder
|
329
|
+
defaults = _default_attributes.except(*(column_names - [primary_key]))
|
330
|
+
@attributes_builder = ActiveModel::AttributeSet::Builder.new(attribute_types, defaults)
|
331
|
+
end
|
332
|
+
@attributes_builder
|
235
333
|
end
|
236
334
|
|
237
|
-
def
|
238
|
-
|
239
|
-
|
240
|
-
|
335
|
+
def columns_hash # :nodoc:
|
336
|
+
load_schema
|
337
|
+
@columns_hash
|
338
|
+
end
|
339
|
+
|
340
|
+
def columns
|
341
|
+
load_schema
|
342
|
+
@columns ||= columns_hash.values
|
343
|
+
end
|
344
|
+
|
345
|
+
def attribute_types # :nodoc:
|
346
|
+
load_schema
|
347
|
+
@attribute_types ||= Hash.new(Type.default_value)
|
241
348
|
end
|
242
349
|
|
243
|
-
def
|
244
|
-
|
350
|
+
def yaml_encoder # :nodoc:
|
351
|
+
@yaml_encoder ||= ActiveModel::AttributeSet::YAMLEncoder.new(attribute_types)
|
352
|
+
end
|
353
|
+
|
354
|
+
# Returns the type of the attribute with the given name, after applying
|
355
|
+
# all modifiers. This method is the only valid source of information for
|
356
|
+
# anything related to the types of a model's attributes. This method will
|
357
|
+
# access the database and load the model's schema if it is required.
|
358
|
+
#
|
359
|
+
# The return value of this method will implement the interface described
|
360
|
+
# by ActiveModel::Type::Value (though the object itself may not subclass
|
361
|
+
# it).
|
362
|
+
#
|
363
|
+
# +attr_name+ The name of the attribute to retrieve the type for. Must be
|
364
|
+
# a string or a symbol.
|
365
|
+
def type_for_attribute(attr_name, &block)
|
366
|
+
attr_name = attr_name.to_s
|
367
|
+
if block
|
368
|
+
attribute_types.fetch(attr_name, &block)
|
369
|
+
else
|
370
|
+
attribute_types[attr_name]
|
371
|
+
end
|
245
372
|
end
|
246
373
|
|
247
374
|
# Returns a hash where the keys are column names and the values are
|
248
|
-
# default values when instantiating the
|
375
|
+
# default values when instantiating the Active Record object for this table.
|
249
376
|
def column_defaults
|
250
|
-
|
377
|
+
load_schema
|
378
|
+
@column_defaults ||= _default_attributes.deep_dup.to_hash
|
251
379
|
end
|
252
380
|
|
253
381
|
def _default_attributes # :nodoc:
|
254
|
-
|
255
|
-
|
382
|
+
load_schema
|
383
|
+
@default_attributes ||= ActiveModel::AttributeSet.new({})
|
256
384
|
end
|
257
385
|
|
258
386
|
# Returns an array of column names as strings.
|
259
387
|
def column_names
|
260
|
-
@column_names ||= columns.map
|
388
|
+
@column_names ||= columns.map(&:name)
|
261
389
|
end
|
262
390
|
|
263
391
|
# Returns an array of column objects where the primary id, all columns ending in "_id" or "_count",
|
264
392
|
# and columns used for single table inheritance have been removed.
|
265
393
|
def content_columns
|
266
|
-
@content_columns ||= columns.reject
|
394
|
+
@content_columns ||= columns.reject do |c|
|
395
|
+
c.name == primary_key ||
|
396
|
+
c.name == inheritance_column ||
|
397
|
+
c.name.end_with?("_id") ||
|
398
|
+
c.name.end_with?("_count")
|
399
|
+
end
|
267
400
|
end
|
268
401
|
|
269
402
|
# Resets all the cached information about columns, which will cause them
|
@@ -273,7 +406,7 @@ module ActiveRecord
|
|
273
406
|
# when just after creating a table you want to populate it with some default
|
274
407
|
# values, eg:
|
275
408
|
#
|
276
|
-
# class CreateJobLevels < ActiveRecord::Migration
|
409
|
+
# class CreateJobLevels < ActiveRecord::Migration[5.0]
|
277
410
|
# def up
|
278
411
|
# create_table :job_levels do |t|
|
279
412
|
# t.integer :id
|
@@ -294,47 +427,95 @@ module ActiveRecord
|
|
294
427
|
# end
|
295
428
|
def reset_column_information
|
296
429
|
connection.clear_cache!
|
297
|
-
undefine_attribute_methods
|
298
|
-
connection.schema_cache.
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
@column_types = nil
|
303
|
-
@content_columns = nil
|
304
|
-
@default_attributes = nil
|
305
|
-
@inheritance_column = nil unless defined?(@explicit_inheritance_column) && @explicit_inheritance_column
|
306
|
-
@relation = nil
|
430
|
+
([self] + descendants).each(&:undefine_attribute_methods)
|
431
|
+
connection.schema_cache.clear_data_source_cache!(table_name)
|
432
|
+
|
433
|
+
reload_schema_from_cache
|
434
|
+
initialize_find_by_cache
|
307
435
|
end
|
308
436
|
|
437
|
+
protected
|
438
|
+
|
439
|
+
def initialize_load_schema_monitor
|
440
|
+
@load_schema_monitor = Monitor.new
|
441
|
+
end
|
442
|
+
|
309
443
|
private
|
310
444
|
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
end
|
445
|
+
def inherited(child_class)
|
446
|
+
super
|
447
|
+
child_class.initialize_load_schema_monitor
|
448
|
+
end
|
316
449
|
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
if
|
323
|
-
|
324
|
-
|
325
|
-
|
450
|
+
def schema_loaded?
|
451
|
+
defined?(@schema_loaded) && @schema_loaded
|
452
|
+
end
|
453
|
+
|
454
|
+
def load_schema
|
455
|
+
return if schema_loaded?
|
456
|
+
@load_schema_monitor.synchronize do
|
457
|
+
return if defined?(@columns_hash) && @columns_hash
|
458
|
+
|
459
|
+
load_schema!
|
460
|
+
|
461
|
+
@schema_loaded = true
|
326
462
|
end
|
463
|
+
end
|
327
464
|
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
465
|
+
def load_schema!
|
466
|
+
@columns_hash = connection.schema_cache.columns_hash(table_name).except(*ignored_columns)
|
467
|
+
@columns_hash.each do |name, column|
|
468
|
+
define_attribute(
|
469
|
+
name,
|
470
|
+
connection.lookup_cast_type_from_column(column),
|
471
|
+
default: column.default,
|
472
|
+
user_provided_default: false
|
473
|
+
)
|
474
|
+
end
|
332
475
|
end
|
333
|
-
end
|
334
476
|
|
335
|
-
|
336
|
-
|
337
|
-
|
477
|
+
def reload_schema_from_cache
|
478
|
+
@arel_table = nil
|
479
|
+
@column_names = nil
|
480
|
+
@attribute_types = nil
|
481
|
+
@content_columns = nil
|
482
|
+
@default_attributes = nil
|
483
|
+
@column_defaults = nil
|
484
|
+
@inheritance_column = nil unless defined?(@explicit_inheritance_column) && @explicit_inheritance_column
|
485
|
+
@attributes_builder = nil
|
486
|
+
@columns = nil
|
487
|
+
@columns_hash = nil
|
488
|
+
@schema_loaded = false
|
489
|
+
@attribute_names = nil
|
490
|
+
@yaml_encoder = nil
|
491
|
+
direct_descendants.each do |descendant|
|
492
|
+
descendant.send(:reload_schema_from_cache)
|
493
|
+
end
|
494
|
+
end
|
495
|
+
|
496
|
+
# Guesses the table name, but does not decorate it with prefix and suffix information.
|
497
|
+
def undecorated_table_name(class_name = base_class.name)
|
498
|
+
table_name = class_name.to_s.demodulize.underscore
|
499
|
+
pluralize_table_names ? table_name.pluralize : table_name
|
500
|
+
end
|
501
|
+
|
502
|
+
# Computes and returns a table name according to default conventions.
|
503
|
+
def compute_table_name
|
504
|
+
base = base_class
|
505
|
+
if self == base
|
506
|
+
# Nested classes are prefixed with singular parent table name.
|
507
|
+
if parent < Base && !parent.abstract_class?
|
508
|
+
contained = parent.table_name
|
509
|
+
contained = contained.singularize if parent.pluralize_table_names
|
510
|
+
contained += "_"
|
511
|
+
end
|
512
|
+
|
513
|
+
"#{full_table_name_prefix}#{contained}#{undecorated_table_name(name)}#{full_table_name_suffix}"
|
514
|
+
else
|
515
|
+
# STI subclasses always use their superclass' table.
|
516
|
+
base.table_name
|
517
|
+
end
|
518
|
+
end
|
338
519
|
end
|
339
520
|
end
|
340
521
|
end
|