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

19 lines
365 B
PHP
Raw Permalink Normal View History

2024-04-22 15:38:22 +02:00
<?php
namespace WoWPress\Database;
class CreateSKSTable extends CreateTable
{
public static $table_name = "sks";
public static $fields = [
'list_name' => 'text NOT NULL',
'char_name' => 'text NOT NULL',
'realm_name' => 'text NOT NULL',
'rank' => 'tinyint NOT NULL',
'active' => 'boolean NOT NULL',
];
}