Skip to content

Commit

Permalink
Added a Models folder to organise models.
Browse files Browse the repository at this point in the history
  • Loading branch information
andela-aonyango committed Feb 19, 2016
1 parent 5ef5fbb commit be09aa7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/Models/Person.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

namespace PotatoORM\Models;

use PotatoORM\Entity;

class Person extends Entity
{
public $id;
public $first_name;
public $last_name;
public $age;
public $gender;

public $entity_table = "Person";
public $entity_class = "Person";
public $db_fields = ["id", "first_name", "last_name", "age", "gender"];
public $primary_keys = ["id"];
}

0 comments on commit be09aa7

Please sign in to comment.