forked from SoDOff-Project/sodoff
update migration
This commit is contained in:
parent
745e38dfc2
commit
a8129eecc1
@ -51,7 +51,7 @@ namespace sodoff.Migrations
|
|||||||
name: "Users",
|
name: "Users",
|
||||||
columns: table => new
|
columns: table => new
|
||||||
{
|
{
|
||||||
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
Id = table.Column<Guid>(type: "TEXT", nullable: false, maxLength: 255),
|
||||||
Email = table.Column<string>(type: "TEXT", nullable: false),
|
Email = table.Column<string>(type: "TEXT", nullable: false),
|
||||||
Username = table.Column<string>(type: "TEXT", nullable: false),
|
Username = table.Column<string>(type: "TEXT", nullable: false),
|
||||||
Password = table.Column<string>(type: "TEXT", nullable: false)
|
Password = table.Column<string>(type: "TEXT", nullable: false)
|
||||||
|
@ -717,7 +717,8 @@ namespace sodoff.Migrations
|
|||||||
{
|
{
|
||||||
b.Property<Guid>("Id")
|
b.Property<Guid>("Id")
|
||||||
.ValueGeneratedOnAdd()
|
.ValueGeneratedOnAdd()
|
||||||
.HasColumnType("TEXT");
|
.HasColumnType("TEXT")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
b.Property<string>("Email")
|
b.Property<string>("Email")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user