about summary refs log tree commit diff stats
path: root/db/migrate/20170929221317_create_pokeviewer_gift_ribbons.rb
blob: deedc80c26ca9cc8979844d6801f01fbdb23688b (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreatePokeviewerGiftRibbons < ActiveRecord::Migration[5.1]
  def change
    create_table :pokeviewer_gift_ribbons do |t|
      t.string :description, null: false

      t.timestamps
    end
  end
end