activerecord-sqlserver-adapter
activerecord-sqlserver-adapter copied to clipboard
SQL Server Adapter For Rails
When running change_column in a migration, indexes are dropped first and then recreated. However, the recreated index doesn't have the same flags as the original one. Here is a bash...
When inserting a record into a table that uses composite primary keys, the instance of the model is not properly updated with the returned keys. Assume the following contents of...
There is a datatype called [geography](https://learn.microsoft.com/en-us/sql/t-sql/spatial-geography/spatial-types-geography?view=sql-server-ver17) that is a binary representation of spatial data. I found that when I tried leveraging this in Rails, it was mapped to `string` in...