diff options
author | Camil Staps | 2015-05-24 22:42:26 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-24 22:42:26 +0200 |
commit | ea7966cc6823ddaa349740e438c4f0cb588f5b32 (patch) | |
tree | ab5e2bb9de2b64ee3cdc7d5c0bfbca61ce742335 /src/CamilStaps/BotleaguesApi/Database/Bot.php | |
parent | Using email as id; User & PasswordReminder (diff) |
User id -> email in other classes
Diffstat (limited to 'src/CamilStaps/BotleaguesApi/Database/Bot.php')
-rw-r--r-- | src/CamilStaps/BotleaguesApi/Database/Bot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CamilStaps/BotleaguesApi/Database/Bot.php b/src/CamilStaps/BotleaguesApi/Database/Bot.php index f0be0fc..abdd78a 100644 --- a/src/CamilStaps/BotleaguesApi/Database/Bot.php +++ b/src/CamilStaps/BotleaguesApi/Database/Bot.php @@ -4,6 +4,6 @@ namespace CamilStaps\BotleaguesApi\Database; class Bot extends Model { protected $table = 'bots'; - protected $fillable = ['userId', 'gameId', 'title']; + protected $fillable = ['userEmail', 'gameId', 'title']; }
\ No newline at end of file |