class CreateWeatherArts < ActiveRecord::Migration[8.0] def change create_table :weather_arts do |t| t.references :city, null: false, foreign_key: true t.date :weather_date, null: false t.string :description t.integer :temperature t.integer :feeling_temp t.integer :humidity t.integer :wind_scale t.integer :wind_speed t.decimal :precipitation t.integer :pressure t.integer :visibility t.integer :cloud t.string :prompt t.timestamps end end end