Class: Partitioned::ByCreatedAt
- Inherits:
-
ByWeeklyTimeField
- Object
- ActiveRecord::Base
- PartitionedBase
- ByTimeField
- ByWeeklyTimeField
- Partitioned::ByCreatedAt
- Defined in:
- lib/partitioned/by_created_at.rb
Overview
Partition tables by created_at grouping them by week, with a week defined as seven days starting on Monday.
Class Method Summary collapse
-
.partition_time_field ⇒ Symbol
the field to partition on, ‘created_at`.
Methods inherited from ByWeeklyTimeField
partition_normalize_key_value, partition_table_size
Methods inherited from ByTimeField
partition_generate_range, partition_normalize_key_value, partition_table_size
Methods inherited from PartitionedBase
add_parent_table_rules, add_partition_table_index, add_references_to_partition_table, archive_old_partition, archive_old_partitions, arel_table_from_key_values, configurator, configurator_dsl, create_infrastructure, create_new_partition, create_new_partition_tables, create_new_partitions, create_partition_schema, create_partition_table, delete_infrastructure, drop_old_partition, drop_old_partitions, drop_partition_table, #dynamic_arel_table, dynamic_arel_table, from_partition, from_partition_without_alias, partition_generate_range, partition_key_values, partition_keys, partition_manager, partition_name, partition_normalize_key_value, partition_table_alias_name, #partition_table_name, partition_table_name, partitioned, sql_adapter
Methods included from ActiveRecordOverrides
#arel_attributes_values, #delete
Class Method Details
.partition_time_field ⇒ Symbol
the field to partition on, ‘created_at`
11 12 13 |
# File 'lib/partitioned/by_created_at.rb', line 11 def self.partition_time_field return :created_at end |