Update photos_table.sql
Fixing a DEFAULT that wasn't set
This commit is contained in:
parent
b2997c37da
commit
2a8b1f9ec2
@ -24,8 +24,8 @@ CREATE TABLE IF NOT EXISTS `?` (
|
||||
`album` bigint(20) unsigned NOT NULL,
|
||||
`checksum` char(40) DEFAULT NULL,
|
||||
`medium` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`position` tinyint(1) NOT NULL,
|
||||
`position` tinyint(1) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `Index_album` (`album`),
|
||||
KEY `Index_star` (`star`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
Loading…
Reference in New Issue
Block a user