1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00

- re-added emotion column. ;)

- postgresql schema fix


git-svn-id: file:///svn/phpbb/trunk@5125 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2005-04-20 18:04:43 +00:00
parent a78e6a15af
commit f134530566
7 changed files with 231 additions and 287 deletions

View File

@@ -376,16 +376,6 @@ CREATE TABLE phpbb_ranks (
PRIMARY KEY (rank_id)
);
-- Table: 'phpbb_ratings'
CREATE TABLE phpbb_ratings (
post_id INTEGER DEFAULT 0 NOT NULL,
user_id INTEGER DEFAULT 0 NOT NULL,
rating INTEGER DEFAULT 0 NOT NULL
);
CREATE INDEX post_id ON phpbb_ratings (post_id);
CREATE INDEX user_id4 ON phpbb_ratings (user_id);
-- Table: 'phpbb_reports_reasons'
CREATE TABLE phpbb_reports_reasons (
reason_id INTEGER NOT NULL,