about summary refs log tree commit diff stats
path: root/db/migrate/20171015171550_create_pokeviewer_gift_ribbons.pokeviewer.rb
blob: 5c055f42df1bc7cd833ec37813686dd86d20c10d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# This migration comes from pokeviewer (originally 20170929221317)
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