You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2010100600.sql 278B

123456789
  1. -- Updates from version 0.4.2
  2. DROP INDEX [IX_users_username]
  3. GO
  4. CREATE UNIQUE INDEX [IX_users_username] ON [dbo].[users]([username],[mail_host]) ON [PRIMARY]
  5. GO
  6. ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [varchar] (255) COLLATE Latin1_General_CI_AI NOT NULL
  7. GO