Rt 2.0.15 -> 3.0.3 EffectiveID lost?

I’m running version 1.12 of the upgrade tool… I notice the EffectiveID is
preserved in the dump, but not in the import. I’m wondering if the ticket
creation routine (inside rt3 libs, not the importer) ignores effective id
or something? I can obviously get around this with some simple SQL
UPDATEs but obviously correcting the real problem is always nice :slight_smile:

Thanks -

-=| Ben

mysql> use rt2
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select count() from Tickets where id!=Effectiveid;
| count(
) |
| 150 |
1 row in set (0.00 sec)

mysql> use rt3
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select count() from Tickets where id!=Effectiveid;
| count(
) |
| 0 |
1 row in set (0.00 sec)