0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 09:44:06 +08:00
discourse/plugins/discourse-assign/db/migrate/20220728171436_add_status_to_assignments.rb
2025-07-15 16:38:05 +02:00

7 lines
170 B
Ruby
Vendored

# frozen_string_literal: true
class AddStatusToAssignments < ActiveRecord::Migration[6.1]
def change
add_column :assignments, :status, :text, null: true
end
end