Weather_data.php (228B) download
1<?php
2
3class Weather_data extends Lollipop\DatabaseObject
4{
5 static function get_table(): string
6 {
7 return "weather_data";
8 }
9
10 static function get_primary(): string
11 {
12 return "data_id";
13 }
14}
15?>