How I can to force a table column type?

I desire force a datetime mysql column type, but petapoco is creating a timestamp column type.

[TableName("test"), PrimaryKey("id")]

public class Test

{

        [Column("id")]

        public long id { get; set; }

 

        [Column("datetime")]

        public DateTime datetime { get; set; }

}

 


This is a companion discussion topic for the original entry at https://our.umbraco.com/forum/56946-how-i-can-to-force-a-table-column-type