rails-acnh-randomizer / db / migrate / 20230728184251_create_books.rb
20230728184251_create_books.rb
Raw
class CreateBooks < ActiveRecord::Migration[7.0]
  def change
    create_table :books do |t|
      t.string :title
      t.text :body

      t.timestamps
    end
  end
end