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

19 lines
380 B
PHP
Raw Normal View History

2024-09-20 20:02:10 +02:00
<?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',
];
}