debian-mirror-gitlab/db/migrate/20150920161119_add_line_code_to_sent_notification.rb

7 lines
163 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-09-25 12:07:36 +05:30
class AddLineCodeToSentNotification < ActiveRecord::Migration
def change
add_column :sent_notifications, :line_code, :string
end
end