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