mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

* Implemented tax collection for subscriptions * Cleanup for Sales Tax * Cleanup for Sales Tax * Changes a constraint to an index for checking purposes * Added and implemented a ReadById method for TaxRate * Code review fixes for Tax Rate implementation * Code review fixes for Tax Rate implementation * Made the SalesTax migration script rerunnable
10 lines
143 B
Transact-SQL
10 lines
143 B
Transact-SQL
CREATE PROCEDURE [dbo].[TaxRate_ReadAllActive]
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT * FROM [dbo].[TaxRate]
|
|
WHERE Active = 1
|
|
END
|
|
GO
|