Files
votervue/views/view_historycodes.php
2026-07-03 15:46:56 -04:00

10 lines
340 B
PHP

<?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 ";
?>