mastodon/db/migrate/20230911094812_add_seen_notices_to_users.rb

8 lines
159 B
Ruby
Raw Permalink Normal View History

2023-09-11 09:50:45 +00:00
# frozen_string_literal: true
class AddSeenNoticesToUsers < ActiveRecord::Migration[7.0]
def change
add_column :users, :seen_notices, :bigint
end
end