hanze/iwa-panda2

Model/User.php in datatowebsite
Repositories | Summary | Log | Files | README.md

User.php (209B) download


 1<?php
 2
 3namespace Model {
 4	class User extends \Lollipop\DatabaseObject
 5	{
 6		static function get_table(): string
 7		{
 8			return "user";
 9		}
10
11		static function get_primary(): string
12		{
13			return "email";
14		}
15	}
16}