2024-04-15 23:07:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace WoWPress\Database;
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
class CreateRaidTable extends CreateTable
|
2024-04-15 23:07:29 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
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',
|
2024-04-23 22:43:54 +02:00
|
|
|
'status' => 'text',
|
2024-04-15 23:07:29 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
}
|