songtianlun
799dfc18ed
- 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.
27 lines
556 B
Ruby
27 lines
556 B
Ruby
vietnam = Country.find_by code: 'VN'
|
|
|
|
City.create!([
|
|
{
|
|
name: 'Ho Chi Minh City',
|
|
latitude: 10.8231,
|
|
longitude: 106.6297,
|
|
country: vietnam,
|
|
timezone: 'Asia/Ho_Chi_Minh',
|
|
active: true,
|
|
priority: 100,
|
|
last_weather_fetch: 10.days.ago,
|
|
last_image_generation: 10.days.ago
|
|
},
|
|
{
|
|
name: 'Hanoi',
|
|
latitude: 21.0285,
|
|
longitude: 105.8542,
|
|
country: vietnam,
|
|
timezone: 'Asia/Ho_Chi_Minh',
|
|
active: true,
|
|
priority: 100,
|
|
last_weather_fetch: 10.days.ago,
|
|
last_image_generation: 10.days.ago
|
|
}
|
|
])
|