Added schema files (empty) and basic models
This commit is contained in:
parent
6c9c04a85d
commit
58070ecf0b
4 changed files with 16 additions and 0 deletions
8
models/Leaderboard.php
Normal file
8
models/Leaderboard.php
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class Leaderboard extends Model
|
||||||
|
{
|
||||||
|
protected $table = 'leaderboard';
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
8
models/User.php
Normal file
8
models/User.php
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class User extends Model
|
||||||
|
{
|
||||||
|
protected $table = 'users';
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
0
schema/leaderboards.sql
Normal file
0
schema/leaderboards.sql
Normal file
0
schema/users.sql
Normal file
0
schema/users.sql
Normal file
Loading…
Add table
Add a link
Reference in a new issue