Committer: nnikulochkina
LJSUP-13108: Paid repost buttonU trunk/bin/upgrading/update-db-general.pl
Modified: trunk/bin/upgrading/update-db-general.pl =================================================================== --- trunk/bin/upgrading/update-db-general.pl 2012-07-27 08:01:26 UTC (rev 22513) +++ trunk/bin/upgrading/update-db-general.pl 2012-07-27 08:04:50 UTC (rev 22514) @@ -4435,6 +4435,11 @@ unless (column_type("repost2", "cost")) { do_alter("repost2", "ALTER TABLE repost2 ADD COLUMN cost int(11) NOT NULL DEFAULT '0'"); } + + unless (column_type("repost2", "blid")) { + do_alter("repost2", "ALTER TABLE repost2 ADD COLUMN blid int(11) NOT NULL DEFAULT '0'"); + } + });