Reputation: 51
I have a table in SQL Server 2014 with the definition in TFS (VS-2015). The table is not partitioned. I made the table partitioned in TFS and expected SSDT would recognize the change and create a deployment script that would change the table from non-partitioned to partitioned. That didn't happen.
Is there a workaround other than making the table changes outside of TFS and SSDT?
Upvotes: 3
Views: 515
Reputation: 3169
Uncheck "Ignore object placement on partition schemes" in your deployment settings (it is set by default):
Upvotes: 2