mastodon/db/migrate/20180506221944_add_actor_ty...

8 lines
161 B
Ruby

# frozen_string_literal: true
class AddActorTypeToAccounts < ActiveRecord::Migration[5.2]
def change
add_column :accounts, :actor_type, :string
end
end