mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-12 07:23:15 +00:00
8 lines
159 B
Ruby
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
|