From bf53bda0a3362660c6e15287ebeb114b565207b2 Mon Sep 17 00:00:00 2001 From: Kirirur Date: Mon, 13 Oct 2014 16:45:35 +0200 Subject: [PATCH] Added field planet_available_points to planets table Added a new field in order to insert a limit of available structures for planets outside the optimal distance from the home world. --- stfc.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/stfc.sql b/stfc.sql index c312bbb..994f8b3 100644 --- a/stfc.sql +++ b/stfc.sql @@ -853,6 +853,7 @@ CREATE TABLE IF NOT EXISTS `planets` ( `planet_current_x` float unsigned NOT NULL default '0', `planet_current_y` float unsigned NOT NULL default '0', `planet_points` smallint(3) unsigned NOT NULL default '0', + `planet_available_points` smallint(3) unsigned NOT NULL default '0', `planet_thumb` varchar(32) NOT NULL default '', `planet_next_attack` int(10) unsigned NOT NULL default '0', `planet_attack_ships` int(11) NOT NULL default '0',