mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Made the schema work with MySQL 3.22
git-svn-id: file:///svn/phpbb/trunk@268 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
3ee09c613c
commit
3fb9761959
1 changed files with 2 additions and 2 deletions
|
@ -115,7 +115,7 @@ DROP TABLE IF EXISTS phpbb_forums;
|
||||||
|
|
||||||
CREATE TABLE phpbb_forums (
|
CREATE TABLE phpbb_forums (
|
||||||
forum_id int(10) NOT NULL auto_increment,
|
forum_id int(10) NOT NULL auto_increment,
|
||||||
cat_id int(10),
|
cat_id int(10) NOT NULL,
|
||||||
forum_name varchar(150),
|
forum_name varchar(150),
|
||||||
forum_desc text,
|
forum_desc text,
|
||||||
forum_access tinyint(3),
|
forum_access tinyint(3),
|
||||||
|
@ -264,7 +264,7 @@ DROP TABLE IF EXISTS phpbb_themes;
|
||||||
|
|
||||||
CREATE TABLE phpbb_themes (
|
CREATE TABLE phpbb_themes (
|
||||||
themes_id int(11) NOT NULL auto_increment,
|
themes_id int(11) NOT NULL auto_increment,
|
||||||
themes_name varchar(30),
|
themes_name varchar(30) NOT NULL,
|
||||||
head_stylesheet varchar(100),
|
head_stylesheet varchar(100),
|
||||||
body_background varchar(100),
|
body_background varchar(100),
|
||||||
body_bgcolor varchar(6),
|
body_bgcolor varchar(6),
|
||||||
|
|
Loading…
Add table
Reference in a new issue