ASPNETDB Database

Procedure: aspnet_UnRegisterSchemaVersion

Description

Unregisters the schema version for the given feature.

Parameters

Name  Type  Direction 
@Feature  nvarchar  Input 
@CompatibleSchemaVersion  nvarchar  Input 

Definition

CREATE PROCEDURE [dbo].aspnet_UnRegisterSchemaVersion
@Feature nvarchar(128),
@CompatibleSchemaVersion nvarchar(128)
AS
BEGIN
DELETE FROM dbo.aspnet_SchemaVersions
WHERE Feature = LOWER(@Feature) AND @CompatibleSchemaVersion = CompatibleSchemaVersion
END


ASP.NET 2.0 Provider Database