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
|