File: 005_reversible.rb

package info (click to toggle)
ruby-sequel 5.63.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,408 kB
  • sloc: ruby: 113,747; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
Sequel.migration do
  change do
    alter_table(:b) do
      add_column :d, String
    end
    alter_table(:b) do
      rename_column :d, :e
    end
  end
end