Files
roundcubemail/SQL/mssql/2016081200.sql
Marco Miltenburg 0278245653 Fixed errors in MSSQL database update scripts (#7853)
* If a column is dropped the constraint that uses that column must be dropped first.
* Removed trailing comma
* Fixed invalid SQL syntax
* Fixed syntax mistakes in MSSQL initial database script
2021-02-08 13:39:19 +01:00

6 lines
127 B
Transact-SQL

ALTER TABLE [dbo].[session] DROP CONSTRAINT [DF_session_created]
GO
ALTER TABLE [dbo].[session] DROP COLUMN [created]
GO