网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
create table RecipeProcess
(
	Id int,
	ProcessContent text null,
	Sort int null,
	ImageId int null,
	DetailId int null
);

create unique index RecipeProcess_Id_uindex
	on RecipeProcess (Id);

alter table RecipeProcess
	add constraint RecipeProcess_pk
		primary key (Id);

alter table RecipeProcess modify Id int auto_increment;

loading