7 lines
154 B
Ruby
7 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ExportsKeyNotNull < ActiveRecord::Migration[6.1]
|
|
def change
|
|
change_column_null :exports, :key, false
|
|
end
|
|
end
|