mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Fixed missing semicolon
git-svn-id: file:///svn/phpbb/trunk@769 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
44fa3624a7
commit
b1a20d6123
1 changed files with 3 additions and 3 deletions
|
@ -40,8 +40,8 @@ CREATE TABLE phpbb_user_group (
|
||||||
#
|
#
|
||||||
# Table structure for table 'phpbb_groups'
|
# Table structure for table 'phpbb_groups'
|
||||||
#
|
#
|
||||||
|
|
||||||
DROP TABLE IF EXISTS phpbb_groups;
|
DROP TABLE IF EXISTS phpbb_groups;
|
||||||
|
|
||||||
CREATE TABLE phpbb_groups (
|
CREATE TABLE phpbb_groups (
|
||||||
group_id int(11) NOT NULL auto_increment,
|
group_id int(11) NOT NULL auto_increment,
|
||||||
group_type tinyint(4) DEFAULT '1' NOT NULL,
|
group_type tinyint(4) DEFAULT '1' NOT NULL,
|
||||||
|
@ -371,14 +371,14 @@ CREATE TABLE `phpbb_themes` (
|
||||||
`span_class3` varchar(25) default NULL,
|
`span_class3` varchar(25) default NULL,
|
||||||
PRIMARY KEY (`themes_id`),
|
PRIMARY KEY (`themes_id`),
|
||||||
KEY `themes_name` (`themes_name`)
|
KEY `themes_name` (`themes_name`)
|
||||||
)
|
);
|
||||||
|
|
||||||
|
|
||||||
# --------------------------------------------------------
|
# --------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Table structure for table 'phpbb_themes_name'
|
# Table structure for table 'phpbb_themes_name'
|
||||||
#
|
#
|
||||||
DROP TABLE IF EXISTS phpbb_themes_name;
|
# DROP TABLE IF EXISTS phpbb_themes_name;
|
||||||
|
|
||||||
CREATE TABLE phpbb_themes_name (
|
CREATE TABLE phpbb_themes_name (
|
||||||
themes_id int(11) DEFAULT '0' NOT NULL,
|
themes_id int(11) DEFAULT '0' NOT NULL,
|
||||||
|
|
Loading…
Add table
Reference in a new issue