mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
10 lines
264 B
Ruby
10 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddStatusToImports < ActiveRecord::Migration[8.0]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
add_column :imports, :status, :integer, default: 0, null: false
|
|
add_index :imports, :status, algorithm: :concurrently
|
|
end
|
|
end
|