Sc tribe memoriesTable: Difference between revisions
Jump to navigation
Jump to search
Created page with '{| border="1" |- ! field ! type ! foreign key ! description |- | id | integer | | |- | tribe_id | integer | | |- | name | varchar | | |- | loc_x | real | | |- | loc_y | r…' |
No edit summary |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{| | {| class="wikitable" | ||
|+ | |||
!UE | |||
!Field | |||
!Type | |||
!Key Type | |||
!Default | |||
!Extra | |||
!Description | |||
|- | |- | ||
| | |||
|id | |||
|int(10) | |||
|PRI | |||
| | | | ||
| | |auto_increment | ||
| | |||
| | |||
| | | | ||
|- | |- | ||
| tribe_id | | | ||
| | |tribe_id | ||
| | |int(10) | ||
| | |||
| | |||
| | |||
| | | | ||
|- | |- | ||
| name | | | ||
| varchar | |name | ||
| | |varchar(30) | ||
| | |||
| | |||
| | |||
| | | | ||
|- | |- | ||
| loc_x | | | ||
| | |loc_x | ||
| | |float(10,2) | ||
| | |||
|0.00 | |||
| | |||
| | | | ||
|- | |- | ||
| loc_y | | | ||
| | |loc_y | ||
| | |float(10,2) | ||
| | |||
|0.00 | |||
| | |||
| | | | ||
|- | |- | ||
| loc_z | | | ||
| | |loc_z | ||
| | |float(10,2) | ||
| | |||
|0.00 | |||
| | |||
| | | | ||
|- | |- | ||
| sector_id | | | ||
| | |sector_id | ||
| | |int(10) unsigned | ||
| | |||
|0 | |||
| | |||
| | | | ||
|- | |- | ||
| radius | | | ||
| | |radius | ||
| | |float(10,2) | ||
| | |||
|0.00 | |||
| | |||
| | | | ||
|} | |} | ||
[[Category:Engine documents]] |
Latest revision as of 13:04, 11 January 2022
UE | Field | Type | Key Type | Default | Extra | Description |
---|---|---|---|---|---|---|
id | int(10) | PRI | auto_increment | |||
tribe_id | int(10) | |||||
name | varchar(30) | |||||
loc_x | float(10,2) | 0.00 | ||||
loc_y | float(10,2) | 0.00 | ||||
loc_z | float(10,2) | 0.00 | ||||
sector_id | int(10) unsigned | 0 | ||||
radius | float(10,2) | 0.00 |