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

      t.timestamps
    end
  end
end