CreateRecords sometimes don't work properly
# 🤝help
a
Hello All I have an issue in my project, when I execute createRecords on a table nothing happens. If I go to the table is allways empty. The system does not show any error and everythings things fine but it does not create the records. I can go the table and manually create records using the "AddRecords" button but not using code This is an example of the log i can see in the dashboard: ------------ 2 may 2024, 21:00:24 [7b781cd369] [table] [AgendaTable] [table]: Execute operation createRecords([{"ec_session_id":"95744","ec_event_id":41100,"title":"How to Take Your Company Global (Business and Basic Ticket Exclusive)","opening":"09:00","closing":"11:00","date":"2024-12-10T09:00:00.000Z","description":" Únase a nosotros en una sesión exclusiva diseñada tanto para titulares de boletos de negocios como para boletos básicos. Descubra los pasos esenciales y estrategias para expandir la presencia de su empresa a nivel mundial. Abordaremos la investigación de mercado, las asociaciones internacionales y conocimientos prácticos para ayudar a que su negocio prospere a escala global.\n"}]) Timestamp 2 may 2024, 21:00:24 Level INFO ------------- This is an example of the code I use: --------- await AgendaTable.createRecords([ { ec_session_id: item.id, ec_event_id: eventData.ec_event_id, title: item.title, opening: item.opening, closing: item.closing, date: new Date(item.time * 1000).toISOString(), description: item.description } ]) --------- I is working fine in other tables and was also working in the past but suddenly it stopped working I using only 13% of my quota and keeps working for other tables so it must not be the reason Any idea? Thank you https://cdn.discordapp.com/attachments/1235673665555792023/1235673665740214353/image.png?ex=66353a47&is=6633e8c7&hm=f8c9790a419d0bd1a5df976f9a2eacb4fb4054e99d8c1e4e8f9d273253b03a68&
a
It seems that your AgendaTable only has a "date" column, and you are trying to create records with more columns. Could that be the problem?