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

18 lines
389 B
PHP
Raw Normal View History

2024-08-07 22:34:54 +02:00
<?php
namespace WoWPress\Database;
class CreateCharListItemTable extends CreateTable
{
public static $table_name = "charlists_item";
public static $fields = [
'character_id' => 'mediumint NOT NULL',
'list_id' => 'mediumint NOT NULL',
'date' => 'date NOT NULL',
'count_multiplier' => 'tinyint NOT NULL',
'comment' => 'text',
];
}