mirror of
https://github.com/michenriksen/gitrob.git
synced 2026-04-24 09:38:34 -05:00
9 lines
252 B
Ruby
9 lines
252 B
Ruby
Sequel.migration do
|
|
change do
|
|
create_table(:blobs_comparisons) do
|
|
foreign_key :comparison_id, :comparisons, :on_delete => :cascade, :index => true
|
|
foreign_key :blob_id, :blobs, :on_delete => :cascade, :index => true
|
|
end
|
|
end
|
|
end
|