DateTime as Int in database Table

I'm working on a editable table and I'm having some issues with my DateTime data types. They are in integers when I click the cells to make an edit. Anyone experience this before?
I'm entering into the table using the Time - DateTime Input if that makes any difference. It also shows like this when I dig into my tables props.selection.data tab



Any help would be appreciated!

You need to supply props.columns and specify date rendering for those values. Dates in Ignition are fundamentally UTC milliseconds since Jan 1, 1970, and since browsers don't have a built-in type to do this, you get those milliseconds. Ignition components that directly expect datetimes deal with this automatically. The table needs a hint for those columns.

i have props.columns set up for all my columns and have the render set to date but still have the milliseconds displayed on my data and in my chart when i click to edit it

Yeah, you won't be able to edit it. You will need to use a cell render view that has a proper date entry component.