class CreateAlbums < ActiveRecord::Migration[7.0]
  def change
    create_table :albums do |t|
      t.string :name
      t.string :kind
      t.date :date

      t.timestamps
    end
  end
end
