网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
create table RecipeCategory
(
	Id int not null,
	Name nvarchar(500) null,
	ParentId int null
);

create unique index RecipeCategory_Id_uindex
	on RecipeCategory (Id);

alter table RecipeCategory
	add constraint RecipeCategory_pk
		primary key (Id);
loading