Footprints Data Model |
Table |
Name | vote_history |
Comment | The history of votes in the case that voting changes. |
Column |
Name | Datatype | Comment | Is PK | Is FK |
vote_history_id | bigint | The automatically generated primary key of the vote_history table. | Yes | No |
voting_timestamp | datetime | History timestamp | No | No |
comments | varchar() | History comments | No | No |
voting_state | varchar(64) | History state | No | No |
vote_id | bigint |
A Foreign Key to the Vote table. The source of the history entry. |
No | Yes |