Skip to content

Commit

Permalink
Unify migrations again into a single file
Browse files Browse the repository at this point in the history
  • Loading branch information
rosa committed Oct 26, 2023
1 parent 4ff7083 commit d844a30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
5 changes: 5 additions & 0 deletions db/migrate/20230207182223_create_solid_queue_tables.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ def change
t.datetime :created_at, null: false
end

create_table :solid_queue_pauses do |t|
t.string :queue_name, null: false, index: { unique: true }
t.datetime :created_at, null: false
end

create_table :solid_queue_processes do |t|
t.text :metadata
t.datetime :created_at, null: false
Expand Down
8 changes: 0 additions & 8 deletions db/migrate/20231025165946_create_solid_queue_pauses.rb

This file was deleted.

0 comments on commit d844a30

Please sign in to comment.