mirror of
https://codeberg.org/vlw/wp.git
synced 2026-02-26 03:51:58 +01:00
16 lines
262 B
PHP
16 lines
262 B
PHP
<?php
|
|
|
|
namespace vlw\WP\Tables;
|
|
|
|
use vlw\xEnum;
|
|
|
|
enum PostMeta: string {
|
|
use xEnum;
|
|
|
|
public const TABLE_NAME = "postmeta";
|
|
|
|
case META_ID = "meta_id";
|
|
case POST_ID = "post_id";
|
|
case META_KEY = "meta_key";
|
|
case META_VALUE = "meta_value";
|
|
}
|