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

19 lines
392 B
PHP

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