19 lines
380 B
PHP
19 lines
380 B
PHP
<?php
|
|
|
|
namespace WoWPress\Database;
|
|
|
|
class CreateSKSHistoryTable extends CreateTable
|
|
{
|
|
|
|
|
|
public static $table_name = "sks_history";
|
|
public static $fields = [
|
|
'list_name' => 'text NOT NULL',
|
|
'list_json' => 'json NOT NULL',
|
|
'active' => 'boolean',
|
|
'created_at' => 'timestamp NOT NULL',
|
|
'updated_at' => 'timestamp NOT NULL',
|
|
];
|
|
|
|
}
|