how to set default null to an int column
I want the parentId to have the default Null, how to do that
export const comments = mysqlTable(
'comments',
{
id: serial('id').primaryKey(),
authorId: int('author_Id').notNull(),
parentId: int('parent_id'),
});