С учетом схемы таблицы Postgresql:
create table thing (
id serial primary key,
key text,
type int references thing,
latest_revision int default 1,
created timestamp default(current_timestamp at time zone 'utc'),
last_modified timestamp default(current_timestamp at time zone 'utc')
);
$for name in ['key', 'type', 'latest_revision', 'last_modified', 'created']:
create index thing_${name}_idx ON thing($name);
Есть две строки, которые я не понимаю, и мне интересно, можно ли вообще преобразовать их в схему таблиц MySql? Может ли следующая строка быть преобразована во что-то, что MySql поймет, как, по-видимому, ссылается на себя:
type int references thing,
Плюс, есть ли MySql-эквивалент для последней строки:
$for name in ['key', 'type', 'latest_revision', 'last_modified', 'created']:
create index thing_${name}_idx ON thing($name);