mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +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
|