mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
3.2.1
This commit is contained in:
@@ -15,8 +15,12 @@ class CreateLogsTable extends Migration
|
||||
{
|
||||
Schema::create('logs', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('type');
|
||||
$table->string('result');
|
||||
$table->text('event');
|
||||
$table->integer('user_id');
|
||||
$table->string('action');
|
||||
$table->string('logable_type');
|
||||
$table->integer('logable_id');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user