mirror of
https://github.com/docusealco/docuseal.git
synced 2026-08-07 07:14:43 +00:00
8 lines
180 B
Ruby
8 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSubmissionCreatedAtIndex < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_index :submissions, :created_at, if_not_exists: true
|
|
end
|
|
end
|