Building types (Database Table)
From SWGANH Wiki
Database Table - building_types
SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.
Table Create Script
CREATE TABLE `building_types` ( `id` int(11) NOT NULL auto_increment, `model` char(255) NOT NULL, `cells` tinyint(2) unsigned NOT NULL default '1', `width` float NOT NULL default '128', `height` float NOT NULL default '128', `file` char(255) NOT NULL default 'building_name', `name` char(255) NOT NULL default 'housing_general_small_style_1', PRIMARY KEY (`id`), UNIQUE KEY `pk_buildingtypes_objstr` (`model`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;