chore(schema): add announces_seen_at to users
This commit is contained in:
parent
f522b45fc3
commit
3ac1688fe4
2 changed files with 6 additions and 0 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddAnnouncesSeenAtToUsers < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :users, :announces_seen_at, :datetime, null: true, default: nil, precision: 6
|
||||
end
|
||||
end
|
|
@ -1032,6 +1032,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_10_26_161609) do
|
|||
create_table "users", id: :serial, force: :cascade do |t|
|
||||
t.datetime "confirmation_sent_at", precision: 6
|
||||
t.datetime "blocked_at", precision: 6
|
||||
t.datetime "announces_seen_at", precision: 6
|
||||
t.text "blocked_reason"
|
||||
t.string "confirmation_token"
|
||||
t.datetime "confirmed_at", precision: 6
|
||||
|
|
Loading…
Reference in a new issue