mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 01:18:31 +08:00
7 lines
147 B
Ruby
7 lines
147 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
class AddOwnerToDrafts < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :drafts, :owner, :string
|
||
|
end
|
||
|
end
|