Added schema files (empty) and basic models

This commit is contained in:
Josh Sherman 2013-12-14 17:27:21 -05:00
parent 6c9c04a85d
commit 58070ecf0b
4 changed files with 16 additions and 0 deletions

8
models/User.php Normal file
View file

@ -0,0 +1,8 @@
<?php
class User extends Model
{
protected $table = 'users';
}
?>