12 lines
320 B
Ruby
12 lines
320 B
Ruby
class CreateBskyUserLastScan < ActiveRecord::Migration[7.2]
|
|
def change
|
|
change_table :domain_users_bluesky_aux do |t|
|
|
t.references :last_scan_log_entry,
|
|
foreign_key: {
|
|
to_table: :http_log_entries,
|
|
},
|
|
index: false
|
|
end
|
|
end
|
|
end
|