File: 002_create_nodes.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 (9 lines) | stat: -rw-r--r-- 138 bytes parent folder | download | duplicates (56)
1
2
3
4
5
6
7
8
9
Class.new(Sequel::Migration) do
  def up
    create_table(:sm2222){Integer :smc2}
  end
    
  def down
    drop_table(:sm2222)
  end
end