forked from e621ng/e621ng
8 lines
158 B
Ruby
8 lines
158 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddAvatarIdToArtists < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :artists, :avatar_id, :integer
|
|
end
|
|
end
|