Skip to content

Commit

Permalink
Added field planet_available_points to planets table
Browse files Browse the repository at this point in the history
Added a new field in order to insert a limit of available structures for
planets outside the optimal distance from the home world.
  • Loading branch information
kirirur committed Oct 13, 2014
1 parent 6a89314 commit bf53bda
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions stfc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit bf53bda

Please sign in to comment.