Suppose trying to generate versioned migrations files for a global unique id enabled schema: ```go client.Schema.Diff(ctx, schema.WithDir(dir), schema.WithGlobalUniqueID(true)) ``` will result into the following error: ```text insert into ent_types: Error 1146: Table 'migrate.ent_types' doesn't exist ``` - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Current Behavior π― There is an error. ## Expected Behavior π€ A new set of migration files are created that also allocate the correct ranges for the primary keys.