Skip to content

Commit

Permalink
Merge pull request #40 from dinfcll/dv_np_ReglagesServeur
Browse files Browse the repository at this point in the history
ChangerBD
  • Loading branch information
xxdomxx committed Dec 15, 2014
2 parents 7b4f719 + c3a0351 commit 117dcbe
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions AbonnementUtil.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
USE [tempdb]
USE [DBPhotoFun]
GO

IF EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_AbonnementUtil_Utilisateurs]') AND parent_object_id = OBJECT_ID(N'[dbo].[AbonnementUtil]'))
Expand All @@ -9,15 +9,15 @@ IF EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[
ALTER TABLE [dbo].[AbonnementUtil] DROP CONSTRAINT [FK_AbonnementUtil_Utilisateurs1]
GO

USE [tempdb]
USE [DBPhotoFun]
GO

/****** Object: Table [dbo].[AbonnementUtil] Script Date: 11/07/2014 14:04:22 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[AbonnementUtil]') AND type in (N'U'))
DROP TABLE [dbo].[AbonnementUtil]
GO

USE [tempdb]
USE [DBPhotoFun]
GO

/****** Object: Table [dbo].[AbonnementUtil] Script Date: 11/07/2014 14:04:22 ******/
Expand Down
Binary file modified PhotoFun.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion PhotoFun/Models/PhotoFunBD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace PhotoFun.Models
{
public class PhotoFunBd
{
private const string Cs = "Data Source=EQUIPE-01\\SQLEXPRESS ;Initial Catalog=tempdb;Integrated Security=True";
private const string Cs = "Data Source=EQUIPE-01\\SQLEXPRESS ;Initial Catalog=DBPhotoFun;Integrated Security=True";

public string ConnexionString
{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified PhotoFun/obj/Debug/PhotoFun.dll
Binary file not shown.
Binary file modified PhotoFun/obj/Debug/PhotoFun.pdb
Binary file not shown.
6 changes: 3 additions & 3 deletions Photos.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
USE [tempdb]
USE [DBPhotoFun]
GO

IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[DF_Photos_NbJaime]') AND type = 'D')
Expand All @@ -8,15 +8,15 @@ END

GO

USE [tempdb]
USE [DBPhotoFun]
GO

/****** Object: Table [dbo].[Photos] Script Date: 11/07/2014 13:06:06 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Photos]') AND type in (N'U'))
DROP TABLE [dbo].[Photos]
GO

USE [tempdb]
USE [DBPhotoFun]
GO

/****** Object: Table [dbo].[Photos] Script Date: 11/07/2014 13:06:07 ******/
Expand Down
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Utilisateurs.sql
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
USE [tempdb]
USE [DBPhotoFun]
GO

/****** Object: Table [dbo].[Utilisateurs] Script Date: 12/01/2014 12:30:22 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Utilisateurs]') AND type in (N'U'))
DROP TABLE [dbo].[Utilisateurs]
GO

USE [tempdb]
USE [DBPhotoFun]
GO

/****** Object: Table [dbo].[Utilisateurs] Script Date: 12/01/2014 12:30:22 ******/
Expand Down
2 changes: 1 addition & 1 deletion relUtilPhoto.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
USE [tempdb]
USE [DBPhotoFun]
GO

ALTER TABLE [dbo].[relUtilPhoto] DROP CONSTRAINT [FK_relUtilPhoto_Utilisateurs]
Expand Down

0 comments on commit 117dcbe

Please sign in to comment.