mirror of
https://github.com/internetee/registry.git
synced 2025-06-09 06:04:56 +02:00
6 lines
194 B
Ruby
6 lines
194 B
Ruby
class ChangeReferenceNoToNotNull < ActiveRecord::Migration
|
|
def change
|
|
change_column_null :registrars, :reference_no, false
|
|
change_column_null :invoices, :reference_no, false
|
|
end
|
|
end
|