1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 02:06:32 +02:00

- mssql related changes

- only added NOT NULL text columns to schema_data, no updates here. ;)


git-svn-id: file:///svn/phpbb/trunk@5045 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2005-01-04 22:07:53 +00:00
parent c73bc2314c
commit d6fa1319e5
6 changed files with 574 additions and 332 deletions

View File

@@ -497,7 +497,7 @@ CREATE TABLE [phpbb_search_results] (
GO
CREATE TABLE [phpbb_search_wordlist] (
[word_text] [varbinary] (50) NOT NULL ,
[word_text] [nvarchar] (50) NOT NULL ,
[word_id] [int] IDENTITY (1, 1) NOT NULL ,
[word_common] [int] NOT NULL
) ON [PRIMARY]