6 lines
123 B
Ruby
6 lines
123 B
Ruby
|
class AddReadAtToEmails < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :emails, :read_at, :timestamp
|
||
|
end
|
||
|
end
|