iwa-panda1

Manage Weather Data by International Weather Agency (Version 1)
Log | Files | Refs

Permissions.php (189B)


      1 <?php
      2 class Permissions extends Lollipop\DatabaseObject
      3 {
      4 	static function get_table(): string
      5 	{
      6 		return "permission";
      7 	}
      8 
      9 	static function get_primary(): string
     10 	{
     11 		return "id";
     12 	}
     13 }
     14 ?>