1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +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

@@ -536,15 +536,6 @@ CREATE TABLE phpbb_ranks (
PRIMARY KEY (rank_id)
);
# Table: 'phpbb_ratings'
CREATE TABLE phpbb_ratings (
post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_id tinyint(4) UNSIGNED UNSIGNED DEFAULT '0' NOT NULL,
rating tinyint(4) DEFAULT '0' NOT NULL,
KEY post_id (post_id),
KEY user_id (user_id)
);
# Table: 'phpbb_reports_reasons'
CREATE TABLE phpbb_reports_reasons (
reason_id smallint(6) NOT NULL auto_increment,
@@ -624,7 +615,7 @@ CREATE TABLE phpbb_sitelist (
CREATE TABLE phpbb_smilies (
smiley_id tinyint(4) UNSIGNED NOT NULL auto_increment,
code char(10),
smiley char(50),
emotion char(50),
smiley_url char(50),
smiley_width tinyint(4) UNSIGNED NOT NULL,
smiley_height tinyint(4) UNSIGNED NOT NULL,