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

}