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