discourse-assign/db/migrate/20220429110203_add_note_to_...

8 lines
168 B
Ruby

# frozen_string_literal: true
class AddNoteToAssignments < ActiveRecord::Migration[6.1]
def change
add_column :assignments, :note, :string, null: true
end
end