mastodon/db/migrate/20230911094812_add_seen_notices_to_users.rb
2023-09-12 12:20:18 +02:00

8 lines
159 B
Ruby

# frozen_string_literal: true
class AddSeenNoticesToUsers < ActiveRecord::Migration[7.0]
def change
add_column :users, :seen_notices, :bigint
end
end