mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
6 lines
199 B
Ruby
6 lines
199 B
Ruby
class ChangeReferenceNoToNotNull < ActiveRecord::Migration[6.0]
|
|
def change
|
|
change_column_null :registrars, :reference_no, false
|
|
change_column_null :invoices, :reference_no, false
|
|
end
|
|
end
|