diff options
author | David M <davidmj@users.sourceforge.net> | 2006-06-20 00:09:45 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-06-20 00:09:45 +0000 |
commit | 9b0d2143bb5d8de42c10ac74cbbf81feafb7ecb4 (patch) | |
tree | f75c591fb179cdfd197f9787f0ec0f0e0ad954c0 /phpBB/install/schemas/mysql_schema.sql | |
parent | 52045ff2631cdfa14efd3379b64843cafd00df8f (diff) | |
download | forums-9b0d2143bb5d8de42c10ac74cbbf81feafb7ecb4.tar forums-9b0d2143bb5d8de42c10ac74cbbf81feafb7ecb4.tar.gz forums-9b0d2143bb5d8de42c10ac74cbbf81feafb7ecb4.tar.bz2 forums-9b0d2143bb5d8de42c10ac74cbbf81feafb7ecb4.tar.xz forums-9b0d2143bb5d8de42c10ac74cbbf81feafb7ecb4.zip |
what? yeah...
- turns out the backup issue was not a backup issue but a schema issue
- let there be color
git-svn-id: file:///svn/phpbb/trunk@6105 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 88d02429ef..f89f468085 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -17,7 +17,7 @@ CREATE TABLE phpbb_attachments ( comment text, extension varchar(100), mimetype varchar(100), - filesize int(20) UNSIGNED NOT NULL, + filesize int(20) UNSIGNED DEFAULT '0' NOT NULL, filetime int(11) UNSIGNED DEFAULT '0' NOT NULL, thumbnail tinyint(1) DEFAULT '0' NOT NULL, PRIMARY KEY (attach_id), |