Forum

Please or Register to create posts and topics.

Fix: RM9 Association Fact Type missing from imports

The new Associations feature in #RM9 adds a new Fact Type (#facttypes) named "Association" to the Fact Type List via the underlying FactTypeTable. However, when you import a database (at least from RM7), it is missing from both. Undoubtedly, that will get fixed in an early update. It is simple enough to add it by opening the imported database, ATTACHing a RM9-created database and copying the row from the latter into the former. Here's my example where "PLAY (2).rmtree" is the attached database.

INSERT INTO FactTypeTable
SELECT * FROM "PLAY (2)".FactTypeTable
WHERE FactTypeID=902
;