17 lines
335 B
PHP
17 lines
335 B
PHP
<?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',
|
|
];
|
|
|
|
}
|