rails-acnh-randomizer / db / migrate / 20230728203815_create_acnh_villagers.rb
20230728203815_create_acnh_villagers.rb
Raw
class CreateAcnhVillagers < ActiveRecord::Migration[7.0]
  def change
    create_table :acnh_villagers do |t|
      t.string :name
      t.string :personality
      t.string :birthday
      t.string :string
      t.string :species
      t.string :gender
      t.string :hobby
      t.text :catchphrase
      t.string :iconuri
      t.string :imageuri
      t.string :bubblecolor
      t.string :textcolor

      t.timestamps
    end
  end
end