You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i use a datetime column, Subsonic create:
ALTER TABLE [Posts] ADD [FechaPublicacion] datetime NOT NULL
CONSTRAINT [DF_Posts_FechaPublicacion] DEFAULT ('01/01/1900 12:00:00 a.m.')
But this couse a error: Conversion failed when converting date and/or time from character string.
This is because the datetime format must end in am/pm NOT a.m./p.m. (Note the dots)
But, if i alter the table manually all works fine.
How can fix this?
The text was updated successfully, but these errors were encountered:
When i use a datetime column, Subsonic create:
ALTER TABLE [Posts] ADD [FechaPublicacion] datetime NOT NULL
CONSTRAINT [DF_Posts_FechaPublicacion] DEFAULT ('01/01/1900 12:00:00 a.m.')
But this couse a error: Conversion failed when converting date and/or time from character string.
This is because the datetime format must end in am/pm NOT a.m./p.m. (Note the dots)
But, if i alter the table manually all works fine.
How can fix this?
The text was updated successfully, but these errors were encountered: