File: 007_reversible.rb

package info (click to toggle)
ruby-sequel 5.97.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,188 kB
  • sloc: ruby: 123,115; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
Sequel.migration do
  change do
    create_table(:d) do
      primary_key :id
    end
    alter_table(:b) do
      add_foreign_key :g, :d, :foreign_key_constraint_name=>:b_f_foo
    end
  end
end