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

21 lines
495 B
PHP
Raw Normal View History

2024-04-22 15:38:22 +02:00
<?php
namespace WoWPress\Database;
class CreateSignupTable extends CreateTable
{
public static $table_name = "signups";
public static $fields = [
'character_id' => 'mediumint NOT NULL',
'raid_id' => 'mediumint NOT NULL',
'boss_id' => 'mediumint',
'status' => 'text NOT NULL',
'role' => 'text NOT NULL',
2024-04-23 00:44:42 +02:00
'comment' => 'text',
2024-04-22 15:38:22 +02:00
'created_at' => 'timestamp NOT NULL',
'updated_at' => 'timestamp NOT NULL',
];
}