mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
7 lines
168 B
Ruby
Vendored
7 lines
168 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AddNoteToAssignments < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :assignments, :note, :string, null: true
|
|
end
|
|
end
|