Context:
Starting from a sample existing database, like AdventureWorks. You create your application A. Building it using EF on the existing database. Selecting the table you need and defining your new one Table1, Table2.
You've Enabled the migration, Created the new migration, an Updated your database so it matches your definition.
Question:
Can you create a project B using some of the database tables and publish its migration on the same database?
Do you need a new __MigrationHistory
Table (On a different shema for exemple)?
Or does they cohabitate in the same table (Using different ContextKey)?
Clarification:
Project A and Project B tables doesn't overlap. Doesn't share or modify the model of each other.