13 lines
254 B
Ruby
13 lines
254 B
Ruby
|
class CreateWeatherArts < ActiveRecord::Migration[8.0]
|
||
|
def change
|
||
|
create_table :weather_arts do |t|
|
||
|
t.date :weather_date
|
||
|
t.string :weather_condition
|
||
|
t.text :description
|
||
|
t.string :prompt
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|