PixelPlacerBot/app/Models/CommandHistory.php

16 lines
317 B
PHP
Raw Normal View History

2024-07-27 15:40:35 -04:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CommandHistory extends Model
{
use HasFactory;
protected $table = 'command_history';
protected $fillable = ['user_id', 'command', 'x', 'y', 'color', 'game_session_id'];
}