forked from e621ng/e621ng
9 lines
210 B
Ruby
9 lines
210 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddBlipsUpdaterId < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :blips, :updater_id, :integer
|
|
add_foreign_key :blips, :users, column: :updater_id
|
|
end
|
|
end
|