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

18 lines
364 B
PHP
Raw Normal View History

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