Fix missing avatar-related columns in users table
authorDan
Fri, 21 Dec 2007 19:08:27 -0500
changeset 333 32429702305e
parent 332 000773138650
child 334 c72b545f1304
Fix missing avatar-related columns in users table
schema.sql
--- a/schema.sql	Fri Dec 21 18:59:30 2007 -0500
+++ b/schema.sql	Fri Dec 21 19:08:27 2007 -0500
@@ -106,6 +106,8 @@
   temp_password_time int(12) NOT NULL DEFAULT 0,
   user_coppa tinyint(1) NOT NULL DEFAULT 0,
   user_lang smallint(5) NOT NULL,
+  user_has_avatar tinyint(1) NOT NULL,
+  avatar_type ENUM('jpg', 'png', 'gif') NOT NULL,
   PRIMARY KEY  (user_id)
 ) CHARACTER SET `utf8` COLLATE `utf8_bin`;