Skip to content

george-moussa/url-shortner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

url-shortner

DB commands dotnet ef migrations add InitialCreate dotnet ef database update

drop table [dbo].[Urls]

CREATE TABLE [Urls] ( [UrlId] varchar(8000) NOT NULL, [UserId] int NOT NULL, [OriginalUrl] varchar(8000) NOT NULL, [ShortenedUrl] varchar(4000) NOT NULL, CONSTRAINT [PK_Urls] PRIMARY KEY ([UrlId]) );

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published