debian-mirror-gitlab/db/migrate/20160307221555_disallow_blank_line_code_on_note.rb
2016-06-16 23:09:34 +05:30

11 lines
200 B
Ruby

# rubocop:disable all
class DisallowBlankLineCodeOnNote < ActiveRecord::Migration
def up
execute("UPDATE notes SET line_code = NULL WHERE line_code = ''")
end
def down
# noop
end
end