-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplete_setup.sql
More file actions
562 lines (509 loc) · 50.5 KB
/
Copy pathcomplete_setup.sql
File metadata and controls
562 lines (509 loc) · 50.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
-- Complete Setup Script: Schema & Data
-- Run this in Supabase SQL Editor
-- 1. Update Schema (Add missing columns)
ALTER TABLE public.news
ADD COLUMN IF NOT EXISTS source_name text DEFAULT 'AgriForge News',
ADD COLUMN IF NOT EXISTS article_url text,
ADD COLUMN IF NOT EXISTS video_url text;
-- 2. Insert News Data
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'FarmersΓÇÖ 7 Big Expectations from Union Budget 2026',
'Farmers across India listed key expectations from Budget 2026 including higher PM-KISAN support, MSP expansion, better crop insurance, irrigation funding and affordable credit.',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'en',
'2026-01-29 00:00:00+00',
true
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'केंद्रीय बजट 2026 से किसानों की 7 बड़ी उम्मीदें',
'किसानों ने पीएम-किसान सहायता बढ़ाने, एमएसपी विस्तार, बेहतर फसल बीमा और सिंचाई निवेश की मांग की।',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'hi',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'કેન્દ્રિય બજેટ 2026 થી ખેડૂતોની 7 મોટી અપેક્ષાઓ',
'ખેડૂતોએ PM-KISAN વધારો, MSP વિસ્તરણ અને પાક વીમા સુધારાની માંગ કરી છે.',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'gu',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'केंद्रीय अर्थसंकल्प 2026 कडून शेतकऱ्यांच्या 7 मोठ्या अपेक्षा',
'पीएम-किसान वाढ, एमएसपी विस्तार आणि सिंचनासाठी निधीची मागणी करण्यात आली.',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'mr',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ਕੇਂਦਰੀ ਬਜਟ 2026 ਤੋਂ ਕਿਸਾਨਾਂ ਦੀਆਂ 7 ਵੱਡੀਆਂ ਉਮੀਦਾਂ',
'PM-KISAN ਵਧਾਉਣ ਅਤੇ MSP ਵਿਸਤਾਰ ਦੀ ਮੰਗ ਕੀਤੀ ਗਈ।',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'pa',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'மத்திய பட்ஜெட் 2026 – விவசாயிகளின் 7 முக்கிய எதிர்பார்ப்புகள்',
'PM-KISAN உயர்வு மற்றும் பயிர் காப்பீடு முக்கிய எதிர்பார்ப்புகள்.',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'ta',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'కేంద్ర బడ్జెట్ 2026పై రైతుల 7 ప్రధాన ఆశలు',
'PM-KISAN పెంపు మరియు పంట బీమా రైతుల ప్రధాన డిమాండ్లు.',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'te',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ಕೇಂದ್ರ ಬಜೆಟ್ 2026ರಿಂದ ರೈತರ 7 ಪ್ರಮುಖ ನಿರೀಕ್ಷೆಗಳು',
'PM-KISAN ಹೆಚ್ಚಳ ಮತ್ತು ಬೆಳೆ ವಿಮೆ ರೈತರ ನಿರೀಕ್ಷೆಗಳು.',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'kn',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'কেন্দ্রীয় বাজেট 2026 থেকে কৃষকদের ৭টি বড় প্রত্যাশা',
'PM-KISAN বৃদ্ধি ও ফসল বিমা কৃষকদের দাবি।',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'bn',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'କେନ୍ଦ୍ରୀୟ ବଜେଟ୍ 2026 ଠାରୁ ଚାଷୀଙ୍କ 7ଟି ଆଶା',
'PM-KISAN ବୃଦ୍ଧି ଓ ଫସଲ ବୀମା ଚାଷୀଙ୍କ ଆଶା।',
'Tractor Junction',
'https://www.tractorjunction.com/agriculture-news/farmers-7-big-expectations-from-budget-2026/',
'or',
'2026-01-29 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'Weather Alert: Low Rainfall and High Temperature May Affect Rabi Crops',
'IMD warned that February may witness lower rainfall and higher temperatures affecting wheat, mustard and gram crops.',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'en',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'मौसम चेतावनी: रबी फसलों पर असर',
'कम बारिश और ज्यादा तापमान से गेहूं और चने की फसल प्रभावित हो सकती है।',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'hi',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'હવામાન ચેતવણી: રવિ પાકને અસર',
'ઓછો વરસાદ અને ઊંચું તાપમાન પાકને નુકસાન કરી શકે છે.',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'gu',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'हवामान इशारा: रब्बी पिकांवर परिणाम',
'कमी पावसामुळे गहू आणि हरभऱ्याला धोका.',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'mr',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ਮੌਸਮ ਚੇਤਾਵਨੀ: ਰਬੀ ਫਸਲਾਂ ਪ੍ਰਭਾਵਿਤ',
'ਘੱਟ ਵਰਖਾ ਨਾਲ ਕਣਕ ਦੀ ਫਸਲ ਪ੍ਰਭਾਵਿਤ ਹੋ ਸਕਦੀ ਹੈ।',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'pa',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'வானிலை எச்சரிக்கை: ரபி பயிர்கள் பாதிப்பு',
'குறைந்த மழை பயிர்களை பாதிக்கலாம்.',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'ta',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'వాతావరణ హెచ్చరిక: రబీ పంటలపై ప్రభావం',
'తక్కువ వర్షాలతో పంటలకు నష్టం.',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'te',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ಹವಾಮಾನ ಎಚ್ಚರಿಕೆ: ರಬ್ಬಿ ಬೆಳೆಗಳಿಗೆ ಹಾನಿ',
'ಕಡಿಮೆ ಮಳೆಯಿಂದ ಬೆಳೆ ಹಾನಿ.',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'kn',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'আবহাওয়া সতর্কতা: রবি ফসল ক্ষতিগ্রস্ত',
'কম বৃষ্টিতে ফসলের ক্ষতি হতে পারে।',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'bn',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ଆବହାଵା ସତର୍କତା: ରବି ଫସଲ କ୍ଷତି',
'କମ୍ ବର୍ଷାରେ ଫସଲ ପ୍ରଭାବିତ।',
'Aaj Tak',
'https://www.aajtak.in/agriculture/agriculture-rural-news/story/february-2026-weather-forecast-india-imd-rabi-crops-farmers-impact-2454039',
'or',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'Unseasonal Rain Damages Rabi Crops in Maharashtra',
'Unseasonal rainfall damaged wheat, onion and pulse crops across Maharashtra.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'en',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'बेमौसम बारिश से रबी फसलों को नुकसान',
'महाराष्ट्र में गेहूं और प्याज की फसल प्रभावित हुई।',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'hi',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'બેમોસમી વરસાદથી રવિ પાકને નુકસાન',
'ઘઉં અને ડુંગળીના પાકને નુકસાન.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'gu',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'अवकाळी पावसामुळे रब्बी पिकांचे नुकसान',
'गहू व कांद्याचे नुकसान.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'mr',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ਬੇਮੌਸਮੀ ਮੀਂਹ ਨਾਲ ਰਬੀ ਫਸਲ ਨੁਕਸਾਨੀ',
'ਗੰਢੂ ਅਤੇ ਪਿਆਜ਼ ਨੂੰ ਨੁਕਸਾਨ.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'pa',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'அகால மழையால் ரபி பயிர்கள் சேதம்',
'கோதுமை பயிர்கள் பாதிப்பு.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'ta',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'అకాల వర్షాలతో రబీ పంటలకు నష్టం',
'గోధుమ పంటలకు నష్టం.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'te',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ಅಕಾಲಿಕ ಮಳೆಯಿಂದ ರಬ್ಬಿ ಬೆಳೆ ಹಾನಿ',
'ಗೋಧಿ ಬೆಳೆ ಹಾನಿಯಾಗಿದೆ.',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'kn',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'অকাল বৃষ্টিতে রবি ফসলের ক্ষতি',
'গম ফসল ক্ষতিগ্রস্ত।',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'bn',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ଅକାଳ ବର୍ଷାରେ ରବି ଫସଲ କ୍ଷତି',
'ଗହମ ଫସଲ ନଷ୍ଟ।',
'Times of India',
'https://timesofindia.indiatimes.com/city/nashik/unseasonal-jan-end-rainfall-damages-rabi-crops/articleshow/127948453.cms',
'or',
'2026-01-31 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'India Records Highest Phosphatic and Potassic Fertiliser Output',
'Record fertiliser production improved availability for farmers.',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'en',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'उर्वरक उत्पादन में रिकॉर्ड',
'खाद की उपलब्धता बढ़ी।',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'hi',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ખાતર ઉત્પાદનમાં રેકોર્ડ',
'ખેડૂતોને ફાયદો.',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'gu',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'खत उत्पादनात विक्रम',
'खतांची उपलब्धता वाढली.',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'mr',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ਖਾਦ ਉਤਪਾਦਨ ਵਿੱਚ ਰਿਕਾਰਡ',
'ਖਾਦ ਉਪਲਬਧਤਾ ਵਧੀ।',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'pa',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'உர உற்பத்தியில் சாதனை',
'விவசாயிகளுக்கு பயன்.',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'ta',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ఎరువుల ఉత్పత్తిలో రికార్డు',
'రైతులకు లాభం.',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'te',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ಗೊಬ್ಬರ ಉತ್ಪಾದನೆಯಲ್ಲಿ ದಾಖಲೆ',
'ರೈತರಿಗೆ ಲಾಭ.',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'kn',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'সার উৎপাদনে রেকর্ড',
'কৃষকদের উপকার।',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'bn',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ସାର ଉତ୍ପାଦନରେ ରେକର୍ଡ',
'ଚାଷୀଙ୍କୁ ଲାଭ।',
'Business Standard',
'https://www.business-standard.com/industry/agriculture/india-logs-record-phosphatic-potassic-fertiliser-output-in-january-2026-126020601625_1.html',
'or',
'2026-02-01 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'IndiaΓÇôUS Interim Trade Deal: Likely Impact on Agriculture',
'Experts analysed the effect of the trade deal on Indian agriculture.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'en',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'भारत-अमेरिका व्यापार समझौते का असर',
'कृषि पर प्रभाव का विश्लेषण।',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'hi',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ભારત-અમેરિકા વેપાર કરારની અસર',
'ખેતી પર અસર.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'gu',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'भारत-अमेरिका व्यापार कराराचा परिणाम',
'शेतीवर परिणाम.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'mr',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ਭਾਰਤ-ਅਮਰੀਕਾ ਵਪਾਰ ਸਮਝੌਤਾ',
'ਖੇਤੀ ਉੱਤੇ ਅਸਰ.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'pa',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'இந்தியா-அமெரிக்க வர்த்தக ஒப்பந்தம்',
'விவசாய தாக்கம்.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'ta',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'భారత్-అమెరికా వాణిజ్య ఒప్పందం',
'వ్యవసాయంపై ప్రభావం.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'te',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ಭಾರತ-ಅಮೇರಿಕಾ ವ್ಯಾಪಾರ ಒಪ್ಪಂದ',
'ಕೃಷಿ ಪರಿಣಾಮ.',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'kn',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ভারত-আমেরিকা বাণিজ্য চুক্তি',
'কৃষি প্রভাব।',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'bn',
'2026-02-02 00:00:00+00',
false
);
INSERT INTO public.news (title, content, source_name, article_url, language, created_at, is_top_news)
VALUES (
'ଭାରତ-ଆମେରିକା ବ୍ୟାପାର ଚୁକ୍ତି',
'କୃଷି ପ୍ରଭାବ।',
'Moneycontrol',
'https://www.moneycontrol.com/news/opinion/india-us-interim-agreement-likely-impact-on-agriculture-13817187.html',
'or',
'2026-02-02 00:00:00+00',
false
);