ソースコードのいくつかを読んだ後、私は自分で答えを見つけました:
これを実現したい場合は、次のファイルを変更する必要があります: MysqlSchemaParser.php、場所: propel1/generator/lib/reverse/mysql (composer とともにインストールされている場合)
99 行目のレコードセットを次のように変更します。
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$name = $row[0];
$type = $row[1];
if ($name == $this->getMigrationTable() || $type != "BASE TABLE") {
continue;
}
/*
Edit : Find out if table isCrossRef
*/
$commentStmt = $this->dbh->query("show table status like '".$name."'");
$commentRow = $commentStmt->fetch(PDO::FETCH_OBJ);
$isCrossRef = (strtolower($commentRow->Comment) == 'iscrossref');
/*
End of edit
*/
if ($task) {
$task->log(" Adding table '" . $name . "'", Project::MSG_VERBOSE);
}
$table = new Table($name);
$table->setIdMethod($database->getDefaultIdMethod());
$table->setIsCrossRef($isCrossRef); /*EDIT : set is crossref to true*/
$database->addTable($table);
$tables[] = $table;
}