Skip to content

Commit

Permalink
Lowecased for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ConsoleTVs committed Feb 13, 2016
1 parent 377952b commit 93835fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Permission_Role.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
class Permission_Role extends Model
{
public $timestamps = false;
protected $table = 'Permission_Role';
protected $table = 'permission_role';
}
2 changes: 1 addition & 1 deletion app/Permission_Types.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Permission_Types extends Model
{
protected $table = "Permission_Types";
protected $table = "permission_types";

public function permissions(){
return $this->HasMany('App\Permission', 'type_id');
Expand Down
2 changes: 1 addition & 1 deletion app/Role_User.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

class Role_User extends Model
{
protected $table = 'Role_User';
protected $table = 'role_user';
}
2 changes: 1 addition & 1 deletion app/Users_Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
class Users_Settings extends Model
{
public $timestamps = false;
protected $table = 'Users_Settings';
protected $table = 'users_settings';
}

0 comments on commit 93835fb

Please sign in to comment.