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

17 lines
334 B
PHP
Raw Normal View History

2024-08-07 22:34:54 +02:00
<?php
namespace WoWPress\Database;
class CreateCharListsTable extends CreateTable
{
public static $table_name = "charlists";
public static $fields = [
'list_name' => 'text NOT NULL',
'border_color' => 'text NOT NULL',
'max_count' => 'mediumint NOT NULL',
'notify' => 'boolean'
];
}