<?php namespace WoWPress\Database; class CreateRaidTable extends CreateTable { public static $table_name = "raids"; public static $fields = [ 'id_wowaudit' => 'mediumint', 'title' => 'text NOT NULL', 'difficulty' => 'text NOT NULL', 'start' => 'datetime NOT NULL', 'end' => 'datetime NOT NULL', 'status' => 'text', ]; }