From 2adc539dabbd33b80ce29b0d81633495256b684b Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Sun, 12 May 2019 16:23:53 +0800 Subject: [PATCH] =?UTF-8?q?doc:=20=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 初始化数据库脚本,首行增加切换数据库语句 --- DatabaseScripts/InitData.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DatabaseScripts/InitData.sql b/DatabaseScripts/InitData.sql index bcc2e478..eb61fe7e 100644 --- a/DatabaseScripts/InitData.sql +++ b/DatabaseScripts/InitData.sql @@ -1,3 +1,6 @@ +USE [BootstrapAdmin] +GO + -- ADMIN/123789 -- User/123789 DELETE From Users where UserName in ('Admin', 'User')