File: 20131226000000_create_monsters.rb

package info (click to toggle)
ruby-sequenced 3.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,884 kB
  • sloc: ruby: 696; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
class CreateMonsters < ActiveRecord::Migration
  def change
    create_table :monsters do |t|
      t.integer :sequential_id
      t.string :type
      t.timestamps
    end
  end
end