- Changed 'last_weather_fetch' and 'last_image_generation' from 10.hours.ago to 10.days.ago for various cities - Affects seed data for cities in multiple countries, including: - Australia - Bangladesh - Brazil - Canada - China - Egypt - France - Germany - India - Japan - Mexico - Nigeria - Pakistan - Russia - Saudi Arabia - Singapore - South Korea - Thailand - Turkey - UK - USA - Vietnam This change ensures that the timestamps reflect a more refined time range for when last weather data was fetched, possibly to enhance performance or consistency in application behavior.
16 lines
305 B
Ruby
16 lines
305 B
Ruby
saudi_arabia = Country.find_by code: 'CA'
|
|
|
|
City.create!([
|
|
{
|
|
name: 'Riyadh',
|
|
latitude: 24.7136,
|
|
longitude: 46.6753,
|
|
country: saudi_arabia,
|
|
timezone: 'Asia/Riyadh',
|
|
active: true,
|
|
priority: 100,
|
|
last_weather_fetch: 10.days.ago,
|
|
last_image_generation: 10.days.ago
|
|
}
|
|
])
|