mirror of
https://github.com/michenriksen/gitrob.git
synced 2026-02-22 06:39:02 -06: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
|