File: 20131111111111_late_migration.rb

package info (click to toggle)
ruby-data-migrate 6.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 548 kB
  • sloc: ruby: 1,799; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
class LateMigration < ActiveRecord::Migration[6.0]
  def up
    puts "Doing schema LateMigration"
  end

  def down
    puts "Undoing LateMigration"
  end
end