summaryrefslogtreecommitdiff
path: root/db/migrate/20210408001502_create_ptu_natures.rb
blob: 57692fdcfb84da5b2b0eda2cd5b8223b5d48bdf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreatePtuNatures < ActiveRecord::Migration[6.1]
  def change
    create_table :ptu_natures do |t|
      t.string :name
      t.string :raises
      t.string :lowers

      t.timestamps
    end
  end
end