diff options
author | David M <davidmj@users.sourceforge.net> | 2006-04-19 04:46:55 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-04-19 04:46:55 +0000 |
commit | 8893d6f5b302da20c71eca647e2ce041331f9ead (patch) | |
tree | ec6a31b00f612e782549fb2d506f1e368b2f0674 /phpBB | |
parent | 3e67fe55cb9a33a1e6df500393293577aea73a2e (diff) | |
download | forums-8893d6f5b302da20c71eca647e2ce041331f9ead.tar forums-8893d6f5b302da20c71eca647e2ce041331f9ead.tar.gz forums-8893d6f5b302da20c71eca647e2ce041331f9ead.tar.bz2 forums-8893d6f5b302da20c71eca647e2ce041331f9ead.tar.xz forums-8893d6f5b302da20c71eca647e2ce041331f9ead.zip |
- oopse
git-svn-id: file:///svn/phpbb/trunk@5802 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/schemas/firebird_schema.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/schemas/firebird_schema.sql b/phpBB/install/schemas/firebird_schema.sql index e13386eb25..746e442c1f 100644 --- a/phpBB/install/schemas/firebird_schema.sql +++ b/phpBB/install/schemas/firebird_schema.sql @@ -1178,14 +1178,14 @@ CREATE TABLE phpbb_styles_template_data ( CREATE INDEX phpbb_styles_tmplte_d_tmpl_flnm ON phpbb_styles_template_data(template_filename);; CREATE INDEX phpbb_styles_tmplte_dt_tmplt_id ON phpbb_styles_template_data(template_id);; -CREATE GENERATOR phpbb_styles_template_data_gen;; -SET GENERATOR phpbb_styles_template_data_gen TO 0;; +CREATE GENERATOR phpbb_styles_templte_data_gen;; +SET GENERATOR phpbb_styles_templte_data_gen TO 0;; CREATE TRIGGER t_phpbb_styles_templte_data_gen FOR phpbb_styles_template BEFORE INSERT AS BEGIN - NEW.template_id = GEN_ID(phpbb_styles_template_data_gen, 1); + NEW.template_id = GEN_ID(phpbb_styles_templte_data_gen, 1); END;; |