18 lines
369 B
PHP
18 lines
369 B
PHP
|
<?php
|
||
|
|
||
|
namespace WoWPress\Database;
|
||
|
|
||
|
class CreateCharacterTable 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',
|
||
|
];
|
||
|
|
||
|
}
|