mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 23:04:01 +01:00
10 lines
307 B
Transact-SQL
10 lines
307 B
Transact-SQL
ALTER TABLE [dbo].[filestore] ADD COLUMN [context] [varchar] (32) COLLATE Latin1_General_CI_AI NOT NULL
|
|
GO
|
|
|
|
UPDATE [dbo].[filestore] SET [dbo].[context] = 'enigma'
|
|
GO
|
|
|
|
CREATE UNIQUE INDEX [IX_filestore_user_id_context_filename] ON [dbo].[filestore]([user_id],[context],[filename]) ON [PRIMARY]
|
|
GO
|
|
|