Skip to content

Instantly share code, notes, and snippets.

@max-mulawa
Created April 21, 2011 12:02
Show Gist options
  • Save max-mulawa/934323 to your computer and use it in GitHub Desktop.
Save max-mulawa/934323 to your computer and use it in GitHub Desktop.
CLRTriggers 2
CREATE TABLE dbo.Configuration
(
PartnerId NVARCHAR(20) NOT NULL,
LicenseKey NVARCHAR(20) NOT NULL,
WeatherForecastDays INT NOT NULL
)
GO
INSERT INTO dbo.Configuration(PartnerId,
LicenseKey,
WeatherForecastDays)
VALUES ('[Partner Id here]'
,'[License Key here]'
,'3')
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment