discourse/db/migrate/20191031042212_add_owner_to...

7 lines
147 B
Ruby

# frozen_string_literal: true
class AddOwnerToDrafts < ActiveRecord::Migration[6.0]
def change
add_column :drafts, :owner, :string
end
end