diff --git a/db/cache_migrate/20240512200132_create_solid_cache_entries.solid_cache.rb b/db/cache_migrate/20240512200132_create_solid_cache_entries.solid_cache.rb index 4ff1fbd..04af347 100644 --- a/db/cache_migrate/20240512200132_create_solid_cache_entries.solid_cache.rb +++ b/db/cache_migrate/20240512200132_create_solid_cache_entries.solid_cache.rb @@ -2,11 +2,11 @@ class CreateSolidCacheEntries < ActiveRecord::Migration[7.0] def change create_table :solid_cache_entries do |t| - t.binary :key, null: false, limit: 1024 - t.binary :value, null: false, limit: 512.megabytes + t.binary :key, null: false, limit: 1024 + t.binary :value, null: false, limit: 512.megabytes t.datetime :created_at, null: false - t.index :key, unique: true + t.index :key, unique: true end end end diff --git a/db/cache_migrate/20240512200133_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb b/db/cache_migrate/20240512200133_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb index b56e847..43fa028 100644 --- a/db/cache_migrate/20240512200133_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb +++ b/db/cache_migrate/20240512200133_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb @@ -2,7 +2,7 @@ class AddKeyHashAndByteSizeToSolidCacheEntries < ActiveRecord::Migration[7.0] def change change_table :solid_cache_entries do |t| - t.column :key_hash, :integer, null: true, limit: 8 + t.column :key_hash, :integer, null: true, limit: 8 t.column :byte_size, :integer, null: true, limit: 4 end end diff --git a/db/cache_migrate/20240512200134_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb b/db/cache_migrate/20240512200134_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb index eadfe43..52c9568 100644 --- a/db/cache_migrate/20240512200134_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb +++ b/db/cache_migrate/20240512200134_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb @@ -4,9 +4,9 @@ def change change_table :solid_cache_entries, bulk: true do |t| t.change_null :key_hash, false t.change_null :byte_size, false - t.index :key_hash, unique: true - t.index [:key_hash, :byte_size] - t.index :byte_size + t.index :key_hash, unique: true + t.index [:key_hash, :byte_size] + t.index :byte_size end end end diff --git a/db/errors_migrate/20240513053645_create_solid_errors_tables.rb b/db/errors_migrate/20240513053645_create_solid_errors_tables.rb index f553537..6568fc4 100644 --- a/db/errors_migrate/20240513053645_create_solid_errors_tables.rb +++ b/db/errors_migrate/20240513053645_create_solid_errors_tables.rb @@ -8,13 +8,13 @@ def change t.text :severity, null: false t.text :source t.datetime :resolved_at, index: true - t.string :fingerprint, null: false, limit: 64, index: { unique: true } + t.string :fingerprint, null: false, limit: 64, index: {unique: true} t.timestamps end create_table :solid_errors_occurrences do |t| - t.belongs_to :error, null: false, foreign_key: { to_table: :solid_errors } + t.belongs_to :error, null: false, foreign_key: {to_table: :solid_errors} t.text :backtrace t.json :context diff --git a/db/queue_migrate/20240512201746_create_solid_queue_tables.solid_queue.rb b/db/queue_migrate/20240512201746_create_solid_queue_tables.solid_queue.rb index 6d8c4f6..2591b73 100644 --- a/db/queue_migrate/20240512201746_create_solid_queue_tables.solid_queue.rb +++ b/db/queue_migrate/20240512201746_create_solid_queue_tables.solid_queue.rb @@ -13,42 +13,42 @@ def change t.timestamps - t.index [ :queue_name, :finished_at ], name: "index_solid_queue_jobs_for_filtering" - t.index [ :scheduled_at, :finished_at ], name: "index_solid_queue_jobs_for_alerting" + t.index [:queue_name, :finished_at], name: "index_solid_queue_jobs_for_filtering" + t.index [:scheduled_at, :finished_at], name: "index_solid_queue_jobs_for_alerting" end create_table :solid_queue_scheduled_executions do |t| - t.references :job, index: { unique: true }, null: false + t.references :job, index: {unique: true}, null: false t.string :queue_name, null: false t.integer :priority, default: 0, null: false t.datetime :scheduled_at, null: false t.datetime :created_at, null: false - t.index [ :scheduled_at, :priority, :job_id ], name: "index_solid_queue_dispatch_all" + t.index [:scheduled_at, :priority, :job_id], name: "index_solid_queue_dispatch_all" end create_table :solid_queue_ready_executions do |t| - t.references :job, index: { unique: true }, null: false + t.references :job, index: {unique: true}, null: false t.string :queue_name, null: false t.integer :priority, default: 0, null: false t.datetime :created_at, null: false - t.index [ :priority, :job_id ], name: "index_solid_queue_poll_all" - t.index [ :queue_name, :priority, :job_id ], name: "index_solid_queue_poll_by_queue" + t.index [:priority, :job_id], name: "index_solid_queue_poll_all" + t.index [:queue_name, :priority, :job_id], name: "index_solid_queue_poll_by_queue" end create_table :solid_queue_claimed_executions do |t| - t.references :job, index: { unique: true }, null: false + t.references :job, index: {unique: true}, null: false t.bigint :process_id t.datetime :created_at, null: false - t.index [ :process_id, :job_id ] + t.index [:process_id, :job_id] end create_table :solid_queue_blocked_executions do |t| - t.references :job, index: { unique: true }, null: false + t.references :job, index: {unique: true}, null: false t.string :queue_name, null: false t.integer :priority, default: 0, null: false t.string :concurrency_key, null: false @@ -56,17 +56,17 @@ def change t.datetime :created_at, null: false - t.index [ :expires_at, :concurrency_key ], name: "index_solid_queue_blocked_executions_for_maintenance" + t.index [:expires_at, :concurrency_key], name: "index_solid_queue_blocked_executions_for_maintenance" end create_table :solid_queue_failed_executions do |t| - t.references :job, index: { unique: true }, null: false + t.references :job, index: {unique: true}, null: false t.text :error t.datetime :created_at, null: false end create_table :solid_queue_pauses do |t| - t.string :queue_name, null: false, index: { unique: true } + t.string :queue_name, null: false, index: {unique: true} t.datetime :created_at, null: false end @@ -83,13 +83,13 @@ def change end create_table :solid_queue_semaphores do |t| - t.string :key, null: false, index: { unique: true } + t.string :key, null: false, index: {unique: true} t.integer :value, default: 1, null: false t.datetime :expires_at, null: false, index: true t.timestamps - t.index [ :key, :value ], name: "index_solid_queue_semaphores_on_key_and_value" + t.index [:key, :value], name: "index_solid_queue_semaphores_on_key_and_value" end add_foreign_key :solid_queue_blocked_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade diff --git a/db/queue_migrate/20240512201747_add_missing_index_to_blocked_executions.solid_queue.rb b/db/queue_migrate/20240512201747_add_missing_index_to_blocked_executions.solid_queue.rb index 2d96b10..53e74dc 100644 --- a/db/queue_migrate/20240512201747_add_missing_index_to_blocked_executions.solid_queue.rb +++ b/db/queue_migrate/20240512201747_add_missing_index_to_blocked_executions.solid_queue.rb @@ -1,6 +1,6 @@ # This migration comes from solid_queue (originally 20240110143450) class AddMissingIndexToBlockedExecutions < ActiveRecord::Migration[7.1] def change - add_index :solid_queue_blocked_executions, [ :concurrency_key, :priority, :job_id ], name: "index_solid_queue_blocked_executions_for_release" + add_index :solid_queue_blocked_executions, [:concurrency_key, :priority, :job_id], name: "index_solid_queue_blocked_executions_for_release" end end diff --git a/db/queue_migrate/20240513061123_create_recurring_executions.solid_queue.rb b/db/queue_migrate/20240513061123_create_recurring_executions.solid_queue.rb index 4c49821..7f441b2 100644 --- a/db/queue_migrate/20240513061123_create_recurring_executions.solid_queue.rb +++ b/db/queue_migrate/20240513061123_create_recurring_executions.solid_queue.rb @@ -2,12 +2,12 @@ class CreateRecurringExecutions < ActiveRecord::Migration[7.1] def change create_table :solid_queue_recurring_executions do |t| - t.references :job, index: { unique: true }, null: false + t.references :job, index: {unique: true}, null: false t.string :task_key, null: false t.datetime :run_at, null: false t.datetime :created_at, null: false - t.index [ :task_key, :run_at ], unique: true + t.index [:task_key, :run_at], unique: true end add_foreign_key :solid_queue_recurring_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade