WowPress-Tailwind/theme/wowpress/Database/CreateLogTable.php

17 lines
335 B
PHP
Raw Normal View History

2024-05-02 23:31:44 +02:00
<?php
namespace WoWPress\Database;
class CreateLogTable extends CreateTable
{
public static $table_name = "log";
public static $fields = [
'message' => 'json NOT NULL',
'action' => 'longtext NOT NULL',
'created_at' => 'timestamp NOT NULL',
'updated_at' => 'timestamp NOT NULL',
];
}