⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbo.community_custom_redirect.sql

📁 倒奶CMS内容管理系统 v6.0 中文版 软件类别: .NET源码 / 全站系统 软件语言: 简体中文 授权方式: 共享版 文件大小: 7.21M 系统平台: ASP.NET+SQL
💻 SQL
字号:
IF EXISTS (SELECT * FROM sysobjects WHERE type = 'U' AND name = 'Community_Custom_Redirect')
	BEGIN
		DROP  Table dbo.Community_Custom_Redirect
	END
GO

CREATE TABLE dbo.Community_Custom_Redirect
(
	[redirect_communityID] [int] NOT NULL ,
	[redirect_SourceURL] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
	[redirect_DestinationURL] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
	[redirect_isSectionRedirect] [bit] NOT NULL 
)
GO
ALTER TABLE [dbo].[Community_Custom_Redirect] WITH NOCHECK ADD 
	CONSTRAINT [PK_Community_Custom_Redirect] PRIMARY KEY CLUSTERED 
	(
		[redirect_communityID],
		[redirect_SourceURL]
	)
GO

ALTER TABLE [dbo].[Community_Custom_Redirect] ADD 
	CONSTRAINT [FK_Community_Custom_Redirect_Community_Communities] FOREIGN KEY 
	(
		[redirect_communityID]
	) REFERENCES [dbo].[Community_Communities] (
		[community_id]
	) ON DELETE CASCADE 
GO

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -