Files
votervue/views/view_historycodes.php
T

10 lines
340 B
PHP
Raw Normal View History

2026-07-03 15:46:56 -04:00
<?php
$SQL = "create view view_historycodes as
select historycodes.*,
date_format(historycode_created, '%c/%e/%Y %l:%i %p') as historycode_created_verbose,
date_format(historycode_changed, '%c/%e/%Y %l:%i %p') as historycode_changed_verbose
from historycodes ";
?>