<?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',
    ];

}