First git push to github

This commit is contained in:
2026-05-29 14:52:16 -04:00
commit 94bc6117f2
1576 changed files with 455304 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
$SQL = "create view view_subscriptioncounties as
select subscriptioncounties.*,
date_format(subscriptioncounty_created, '%c/%e/%Y %l:%i %p') as subscriptioncounty_created_verbose,
date_format(subscriptioncounty_changed, '%c/%e/%Y %l:%i %p') as subscriptioncounty_changed_verbose,
counties.county_name as subscriptioncounties_county_name_verbose
from subscriptioncounties
left join counties
on counties.county_serial = subscriptioncounties.subscriptioncounty_county";
?>