I hereby claim:
- I am abroadbent on github.
- I am abroadbent (https://keybase.io/abroadbent) on keybase.
- I have a public key whose fingerprint is ECA6 26D9 795A BE6B DBC7 4F4D F23F 4B37 DF22 3137
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Boxstarter options | |
$Boxstarter.RebootOk=$true # Allow reboots? | |
$Boxstarter.NoPassword=$false # Is this a machine with no login password? | |
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
#### WINDOWS SETTTINGS ##### | |
Disable-UAC | |
#--- Configuring Windows properties --- |
Endpoint=sb://cloudcityab20180210.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=S8VGFRDCnJaY/+7WoACp6+lziIZRcdN/HSou4auMA/4= |
CREATE TABLE States ( | |
Id int IDENTITY(1,1) NOT NULL, | |
Name varchar(40) NOT NULL, | |
Abbreviation varchar(2) NOT NULL, | |
CountryId int NOT NULL, | |
CONSTRAINT [PK_States] PRIMARY KEY CLUSTERED ([Id] ASC), | |
CONSTRAINT [uc_States_Abbreviation] UNIQUE NONCLUSTERED ([Abbreviation] ASC) | |
); | |
SET IDENTITY_INSERT States ON |
CREATE TABLE Countries ( | |
Id int IDENTITY(1,1) NOT NULL, | |
Iso varchar(2) NOT NULL, | |
Name varchar(80) NOT NULL, | |
Iso3 varchar(3) NULL, | |
NumCode int NULL, | |
PhoneCode int NOT NULL, | |
CONSTRAINT [PK_Countries] PRIMARY KEY CLUSTERED ([Id] ASC), | |
CONSTRAINT [uc_Countries_Iso] UNIQUE NONCLUSTERED ([Iso] ASC) | |
) |