-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,377 additions
and
1,449 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
Ctor.Database.Migrations/Migrations/20161211072528_Logs.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
Ctor.Database.Migrations/Migrations/20161211072528_Logs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
namespace Ctor.Database.Migrations.Migrations | ||
{ | ||
public partial class Logs : Migration | ||
{ | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
|
||
} | ||
|
||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
|
||
} | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
Ctor.Database.Migrations/Migrations/ContextModelSnapshot.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System; | ||
using Microsoft.EntityFrameworkCore; | ||
using Microsoft.EntityFrameworkCore.Infrastructure; | ||
using Microsoft.EntityFrameworkCore.Metadata; | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
using Ctor.Database; | ||
|
||
namespace Ctor.Database.Migrations.Migrations | ||
{ | ||
[DbContext(typeof(Context))] | ||
partial class ContextModelSnapshot : ModelSnapshot | ||
{ | ||
protected override void BuildModel(ModelBuilder modelBuilder) | ||
{ | ||
modelBuilder | ||
.HasAnnotation("ProductVersion", "1.1.0-rtm-22752"); | ||
|
||
modelBuilder.Entity("Ctor.Database.Log", b => | ||
{ | ||
b.Property<long>("Id") | ||
.ValueGeneratedOnAdd(); | ||
|
||
b.Property<string>("Conference"); | ||
|
||
b.Property<DateTime>("DateTime"); | ||
|
||
b.Property<string>("Sender"); | ||
|
||
b.Property<string>("Text"); | ||
|
||
b.HasKey("Id"); | ||
|
||
b.ToTable("Logs"); | ||
}); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.