added prestige along with other stuff
such as fucking up migrations oh god what have I done god please no
This commit is contained in:
@@ -200,6 +200,7 @@ namespace Kehyeedra3.Commands
|
|||||||
ulong xp;
|
ulong xp;
|
||||||
ulong level;
|
ulong level;
|
||||||
ulong lvlXp;
|
ulong lvlXp;
|
||||||
|
int prestige;
|
||||||
int rod;
|
int rod;
|
||||||
Dictionary<FishSpecies, int[]> inv = new Dictionary<FishSpecies, int[]>();
|
Dictionary<FishSpecies, int[]> inv = new Dictionary<FishSpecies, int[]>();
|
||||||
List<Fish> fishes = Fishing.GetFishList();
|
List<Fish> fishes = Fishing.GetFishList();
|
||||||
@@ -226,6 +227,7 @@ namespace Kehyeedra3.Commands
|
|||||||
totalXp = user.TXp;
|
totalXp = user.TXp;
|
||||||
lvlXp = user.Xp;
|
lvlXp = user.Xp;
|
||||||
rod = user.RodUsed;
|
rod = user.RodUsed;
|
||||||
|
prestige = user.Prestige;
|
||||||
|
|
||||||
await Database.SaveChangesAsync();
|
await Database.SaveChangesAsync();
|
||||||
}
|
}
|
||||||
@@ -235,24 +237,26 @@ namespace Kehyeedra3.Commands
|
|||||||
if (lastfish < time)
|
if (lastfish < time)
|
||||||
{
|
{
|
||||||
int rari = (SRandom.Next(0, 2001));
|
int rari = (SRandom.Next(0, 2001));
|
||||||
int weight = SRandom.Next(Convert.ToInt32(level * 5), 1501);
|
int weigh = SRandom.Next(10, 1501+prestige*500);
|
||||||
|
int tierRoll = SRandom.Next(0, 101+prestige*100);
|
||||||
ulong rarity;
|
ulong rarity;
|
||||||
|
int weight;
|
||||||
|
|
||||||
if (level < 100)
|
if (level < 100 && prestige == 0)
|
||||||
{
|
{
|
||||||
rarity = level * 10 + (ulong)rari;
|
rarity = level * 10 + (ulong)rari;
|
||||||
|
weight = (int)level * 5 + weigh;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
rarity = 1000 + (ulong)rari;
|
rarity = 1000 + (ulong)rari;
|
||||||
|
weight = 500 + weigh;
|
||||||
}
|
}
|
||||||
|
|
||||||
Fish fish;
|
Fish fish;
|
||||||
|
|
||||||
if (rarity == 777 || (rarity > 2060 && rarity <= 2070) || rarity == 2777)
|
if (rarity == 777 || (rarity > 2060 && rarity <= 2070) || rarity == 2777)
|
||||||
{
|
{
|
||||||
int tierRoll = SRandom.Next(0, 101);
|
|
||||||
|
|
||||||
if (rod >= 3 && tierRoll > 60)
|
if (rod >= 3 && tierRoll > 60)
|
||||||
{
|
{
|
||||||
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T4Legendary).ToList();
|
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T4Legendary).ToList();
|
||||||
@@ -284,8 +288,7 @@ namespace Kehyeedra3.Commands
|
|||||||
}
|
}
|
||||||
else if (rarity > 1700)
|
else if (rarity > 1700)
|
||||||
{
|
{
|
||||||
int tierRoll = SRandom.Next(0, 101);
|
rarity = Convert.ToUInt64(SRandom.Next(1700, 2801));
|
||||||
rarity = Convert.ToUInt64(SRandom.Next(1750, 2801));
|
|
||||||
if (rod >= 3 && tierRoll > 60)
|
if (rod >= 3 && tierRoll > 60)
|
||||||
{
|
{
|
||||||
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T4Uncommon).ToList();
|
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T4Uncommon).ToList();
|
||||||
@@ -341,7 +344,6 @@ namespace Kehyeedra3.Commands
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int tierRoll = SRandom.Next(0, 101);
|
|
||||||
if (rod >= 3 && tierRoll > 60)
|
if (rod >= 3 && tierRoll > 60)
|
||||||
{
|
{
|
||||||
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T4Common).ToList();
|
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T4Common).ToList();
|
||||||
@@ -354,7 +356,7 @@ namespace Kehyeedra3.Commands
|
|||||||
fish = possibleFishes[SRandom.Next(possibleFishes.Count)];
|
fish = possibleFishes[SRandom.Next(possibleFishes.Count)];
|
||||||
xp = 8;
|
xp = 8;
|
||||||
}
|
}
|
||||||
else if (rod >= 1 && tierRoll >= 20)
|
else if (rod >= 1 && tierRoll > 20)
|
||||||
{
|
{
|
||||||
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T2Common).ToList();
|
List<Fish> possibleFishes = fishes.Where(f => (int)f.Rarity == (int)FishRarity.T2Common).ToList();
|
||||||
fish = possibleFishes[SRandom.Next(possibleFishes.Count)];
|
fish = possibleFishes[SRandom.Next(possibleFishes.Count)];
|
||||||
@@ -377,16 +379,23 @@ namespace Kehyeedra3.Commands
|
|||||||
|
|
||||||
if (weight >= (1000 - Convert.ToInt32(level * 2)))
|
if (weight >= (1000 - Convert.ToInt32(level * 2)))
|
||||||
{
|
{
|
||||||
weight = SRandom.Next(100, 2001) + Convert.ToInt32(level * 5);
|
weight = SRandom.Next(100, 2001) + Convert.ToInt32(level * 5 + (Convert.ToUInt64(prestige * 500)));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (weight >= 1000)
|
if (weight >= 1000)
|
||||||
{
|
{
|
||||||
size = FishSize.Medium;
|
|
||||||
|
|
||||||
if (fish.Rarity == FishRarity.Legendary || fish.Rarity == FishRarity.T2Legendary || fish.Rarity == FishRarity.T3Legendary || fish.Rarity == FishRarity.T4Legendary)
|
if (fish.Rarity == FishRarity.Legendary || fish.Rarity == FishRarity.T2Legendary || fish.Rarity == FishRarity.T3Legendary || fish.Rarity == FishRarity.T4Legendary)
|
||||||
{
|
{
|
||||||
weight = SRandom.Next(2000 + Convert.ToInt32(level * 20), 40001);
|
weight = SRandom.Next(2000 + Convert.ToInt32(level * 20), 40001+prestige*10000);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (weight >= 1500)
|
||||||
|
{
|
||||||
|
size = FishSize.Large;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
size = FishSize.Medium;
|
||||||
}
|
}
|
||||||
|
|
||||||
double w = Convert.ToDouble(weight);
|
double w = Convert.ToDouble(weight);
|
||||||
@@ -405,11 +414,6 @@ namespace Kehyeedra3.Commands
|
|||||||
size = FishSize.Small;
|
size = FishSize.Small;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (weight >= 1500)
|
|
||||||
{
|
|
||||||
size = FishSize.Large;
|
|
||||||
}
|
|
||||||
|
|
||||||
string lvlUp = "";
|
string lvlUp = "";
|
||||||
|
|
||||||
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
|
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
|
||||||
@@ -503,12 +507,12 @@ namespace Kehyeedra3.Commands
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention} Your line snaps. Your disappointment is immeasurable, and your day is ruined.");
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYour line snaps. Your disappointment is immeasurable, and your day is ruined.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention} arrrrr-right, ye scurby bastard, I know yer eager t' scour the seven seas but ye needs t' wait till the next minute t' pillage the booty'o'the depths, savvy?");
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\narrrrr-right, ye scurby bastard, I know yer eager t' scour the seven seas but ye needs t' wait till the next minute t' pillage the booty'o'the depths, savvy?");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1023,6 +1027,10 @@ namespace Kehyeedra3.Commands
|
|||||||
var user = Database.Users.FirstOrDefault(x => x.Id == users[i].Id);
|
var user = Database.Users.FirstOrDefault(x => x.Id == users[i].Id);
|
||||||
string xp = $"{users[i].TXp}";
|
string xp = $"{users[i].TXp}";
|
||||||
string level = $"{users[i].Lvl}";
|
string level = $"{users[i].Lvl}";
|
||||||
|
if (users[i].Prestige > 0)
|
||||||
|
{
|
||||||
|
level += $" + {users[i].Prestige}P";
|
||||||
|
}
|
||||||
leaderboardMessage += $"\n**#{placing} : {user.Username}** Lvl : **{level}**\n*{xp}xp*";
|
leaderboardMessage += $"\n**#{placing} : {user.Username}** Lvl : **{level}**\n*{xp}xp*";
|
||||||
}
|
}
|
||||||
await Context.Channel.SendMessageAsync(leaderboardMessage);
|
await Context.Channel.SendMessageAsync(leaderboardMessage);
|
||||||
@@ -1156,22 +1164,109 @@ namespace Kehyeedra3.Commands
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (otherUser == null)
|
if (otherUser == null)
|
||||||
{
|
{
|
||||||
var user = database.Fishing.FirstOrDefault(x => x.Id == Context.User.Id);
|
var user = database.Fishing.FirstOrDefault(x => x.Id == Context.User.Id);
|
||||||
var muser = database.Users.FirstOrDefault(x => x.Id == Context.User.Id);
|
var muser = database.Users.FirstOrDefault(x => x.Id == Context.User.Id);
|
||||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}'s stats\nFishing level: **{user.Lvl}**\nMax catch weight: **{(user.Lvl * 5 + 2000d) / 100}kg**\nMin catch weight: **{(user.Lvl*5d + 10d)/100}kg**\n" +
|
string pres = "";
|
||||||
|
double cawe = 0;
|
||||||
|
if (user.Prestige > 0)
|
||||||
|
{
|
||||||
|
pres = $" +{user.Prestige}P";
|
||||||
|
cawe = 500;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cawe = user.Lvl * 5d + 10d;
|
||||||
|
}
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}'s stats\nFishing level: **{user.Lvl}{pres}**\nMax catch weight: **{(user.Lvl * 5 + 2000d + user.Prestige*500d) / 100}kg**\nMin catch weight: **{cawe /100}kg**\n" +
|
||||||
$"Fishing xp: **{user.TXp}**\nTotal fish: **{scount + mcount + lcount}** *(Large: {lcount} Medium: {mcount} Small: {scount})*\nBalance: **{muser.Money / 10000d}%**");
|
$"Fishing xp: **{user.TXp}**\nTotal fish: **{scount + mcount + lcount}** *(Large: {lcount} Medium: {mcount} Small: {scount})*\nBalance: **{muser.Money / 10000d}%**");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var user = database.Fishing.FirstOrDefault(x => x.Id == otherUser.Id);
|
var user = database.Fishing.FirstOrDefault(x => x.Id == otherUser.Id);
|
||||||
var muser = database.Users.FirstOrDefault(x => x.Id == otherUser.Id);
|
var muser = database.Users.FirstOrDefault(x => x.Id == otherUser.Id);
|
||||||
await Context.Channel.SendMessageAsync($"{otherUser.Mention}'s stats\nFishing level: **{user.Lvl}**\nMax catch weight: **{(user.Lvl * 5 + 2000d) / 100}kg**\nMin catch weight: **{(user.Lvl * 5d + 10d) / 100}kg**\n" +
|
string pres = "";
|
||||||
|
double cawe = 0;
|
||||||
|
if (user.Prestige > 0)
|
||||||
|
{
|
||||||
|
pres = $" +{user.Prestige}P";
|
||||||
|
cawe = 510;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cawe = user.Lvl * 5d + 10d;
|
||||||
|
}
|
||||||
|
await Context.Channel.SendMessageAsync($"{otherUser.Mention}'s stats\nFishing level: **{user.Lvl}{pres}**+P{user.Prestige}\nMax catch weight: **{(user.Lvl * 5 + 2000d + user.Prestige*500d) / 100}kg**\nMin catch weight: **{cawe / 100}kg**\n" +
|
||||||
$"Fishing xp: **{user.TXp}**\nTotal fish: **{scount + mcount + lcount}** *(Large: {lcount} Medium: {mcount} Small: {scount}*)\nBalance: **{muser.Money / 10000d}%**");
|
$"Fishing xp: **{user.TXp}**\nTotal fish: **{scount + mcount + lcount}** *(Large: {lcount} Medium: {mcount} Small: {scount}*)\nBalance: **{muser.Money / 10000d}%**");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[Command("prestige",RunMode = RunMode.Async),Summary("Sacrifice a load of XP for benefits and growth potential.")]
|
||||||
|
public async Task PrestigeCommand()
|
||||||
|
{
|
||||||
|
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
|
||||||
|
{
|
||||||
|
var user = Database.Fishing.FirstOrDefault(x => x.Id == Context.User.Id);
|
||||||
|
if (user == null)
|
||||||
|
{
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYour first prestige is available at **Lvl 100** in **130503xp**.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ulong presXp = 50;
|
||||||
|
if (user.Prestige > 0 || user.TXp >= 130503)
|
||||||
|
{
|
||||||
|
for (ulong i = 1; i < 100 + (ulong)user.Prestige*5; i++)
|
||||||
|
{
|
||||||
|
if (i <= 100 + (ulong)user.Prestige*5)
|
||||||
|
{
|
||||||
|
presXp += Convert.ToUInt64(Math.Round((presXp * 0.05d + 50d), 0, MidpointRounding.ToEven));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if (user.TXp >= presXp)
|
||||||
|
{
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**Tier {user.Prestige+1}** is available! Type **confirm** to buy it for **{presXp}xp**.");
|
||||||
|
var message = await NextMessageAsync();
|
||||||
|
if (message.Content.ToLowerInvariant() == "confirm")
|
||||||
|
{
|
||||||
|
user.Prestige++;
|
||||||
|
user.TXp -= presXp;
|
||||||
|
user.Xp = 0;
|
||||||
|
user.Lvl = 0;
|
||||||
|
ulong lvlXp = 0;
|
||||||
|
while (user.TXp >= user.Xp)
|
||||||
|
{
|
||||||
|
user.Lvl += 1;
|
||||||
|
lvlXp = 50;
|
||||||
|
for (ulong i = 0; i < user.Lvl; i++)
|
||||||
|
{
|
||||||
|
if (i <= user.Lvl)
|
||||||
|
{
|
||||||
|
lvlXp += Convert.ToUInt64(Math.Round((lvlXp * 0.05d + 50d), 0, MidpointRounding.ToEven));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
user.Xp = lvlXp;
|
||||||
|
}
|
||||||
|
await Database.SaveChangesAsync();
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYou've successfully upgraded to **P{user.Prestige}**.\nReadjusting level.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nCome back when you change your mind.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYour next prestige is available at **Lvl {100+user.Prestige*5}** in **{presXp - user.TXp}xp**.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYour first prestige is available at **Lvl 100** in **{130503-user.TXp}xp**.");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[Command("xptolevel"),Alias("tolv", "xpto"),Summary("Displays how much xp you need to reach the given level.")]
|
[Command("xptolevel"),Alias("tolv", "xpto"),Summary("Displays how much xp you need to reach the given level.")]
|
||||||
|
|||||||
@@ -1,46 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200209182548_AddUserEconomy")]
|
|
||||||
partial class AddUserEconomy
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Money")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<string>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class AddUserEconomy : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Users",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
Id = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
Avatar = table.Column<string>(nullable: true),
|
|
||||||
Username = table.Column<string>(nullable: true),
|
|
||||||
Money = table.Column<ulong>(nullable: false),
|
|
||||||
LastMine = table.Column<ulong>(nullable: false)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Users", x => x.Id);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Users");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200216185543_updatereminders")]
|
|
||||||
partial class updatereminders
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class updatereminders : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Reminders",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
Id = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
Created = table.Column<ulong>(nullable: false),
|
|
||||||
Send = table.Column<ulong>(nullable: false),
|
|
||||||
UserId = table.Column<ulong>(nullable: false),
|
|
||||||
Message = table.Column<string>(nullable: true)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Reminders", x => x.Id);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Reminders");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
122
Kehyeedra3/Migrations/20200220195125_Fishing.Designer.cs
generated
122
Kehyeedra3/Migrations/20200220195125_Fishing.Designer.cs
generated
@@ -1,122 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200220195125_Fishing")]
|
|
||||||
partial class Fishing
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("CFish1")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("CFish2")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("CFish3")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("LFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("RFish1")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("RFish2")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("RFish3")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UFish1")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UFish2")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UFish3")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class Fishing : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Fishing",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
Id = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
LastFish = table.Column<ulong>(nullable: false),
|
|
||||||
Xp = table.Column<ulong>(nullable: false),
|
|
||||||
TXp = table.Column<ulong>(nullable: false),
|
|
||||||
Lvl = table.Column<ulong>(nullable: false),
|
|
||||||
CFish1 = table.Column<ulong>(nullable: false),
|
|
||||||
CFish2 = table.Column<ulong>(nullable: false),
|
|
||||||
CFish3 = table.Column<ulong>(nullable: false),
|
|
||||||
UFish1 = table.Column<ulong>(nullable: false),
|
|
||||||
UFish2 = table.Column<ulong>(nullable: false),
|
|
||||||
UFish3 = table.Column<ulong>(nullable: false),
|
|
||||||
RFish1 = table.Column<ulong>(nullable: false),
|
|
||||||
RFish2 = table.Column<ulong>(nullable: false),
|
|
||||||
RFish3 = table.Column<ulong>(nullable: false),
|
|
||||||
LFish = table.Column<ulong>(nullable: false)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Fishing", x => x.Id);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Fishing");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200222174350_feesh")]
|
|
||||||
partial class feesh
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("json");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,132 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class feesh : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "CFish1",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "CFish2",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "CFish3",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "LFish",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "RFish1",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "RFish2",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "RFish3",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "UFish1",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "UFish2",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "UFish3",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "Inventory",
|
|
||||||
table: "Fishing",
|
|
||||||
nullable: true);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "Inventory",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "CFish1",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "CFish2",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "CFish3",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "LFish",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "RFish1",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "RFish2",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "RFish3",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "UFish1",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "UFish2",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<ulong>(
|
|
||||||
name: "UFish3",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "bigint unsigned",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: 0ul);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200222195851_UpdateFishing")]
|
|
||||||
partial class UpdateFishing
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("json");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class UpdateFishing : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200222200755_FixFishing")]
|
|
||||||
partial class FixFishing
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("json");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class FixFishing : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200222201346_FixFishing2ElectricBoogaloo")]
|
|
||||||
partial class FixFishing2ElectricBoogaloo
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("json");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class FixFishing2ElectricBoogaloo : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200223155743_morefishstuff")]
|
|
||||||
partial class morefishstuff
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("LONGTEXT");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class morefishstuff : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Inventory",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "LONGTEXT",
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "json",
|
|
||||||
oldNullable: true);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Inventory",
|
|
||||||
table: "Fishing",
|
|
||||||
type: "json",
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "LONGTEXT",
|
|
||||||
oldNullable: true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
145
Kehyeedra3/Migrations/20200330063400_store.Designer.cs
generated
145
Kehyeedra3/Migrations/20200330063400_store.Designer.cs
generated
@@ -1,145 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200330063400_store")]
|
|
||||||
partial class store
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.1")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("LONGTEXT");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreFront", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("StoreItemType")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("StoreFronts");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreInventory", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("InvId")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("Amount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<string>("Item")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<int>("Price")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong?>("StoreFrontId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("InvId");
|
|
||||||
|
|
||||||
b.HasIndex("StoreFrontId");
|
|
||||||
|
|
||||||
b.ToTable("StoreInventory");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreInventory", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Kehyeedra3.Services.Models.StoreFront", null)
|
|
||||||
.WithMany("Items")
|
|
||||||
.HasForeignKey("StoreFrontId");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class store : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "StoreFronts",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
Id = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
UserId = table.Column<ulong>(nullable: false),
|
|
||||||
StoreItemType = table.Column<int>(nullable: false)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_StoreFronts", x => x.Id);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "StoreInventory",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
InvId = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
Item = table.Column<string>(nullable: true),
|
|
||||||
Amount = table.Column<int>(nullable: false),
|
|
||||||
Price = table.Column<int>(nullable: false),
|
|
||||||
StoreFrontId = table.Column<ulong>(nullable: true)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_StoreInventory", x => x.InvId);
|
|
||||||
table.ForeignKey(
|
|
||||||
name: "FK_StoreInventory_StoreFronts_StoreFrontId",
|
|
||||||
column: x => x.StoreFrontId,
|
|
||||||
principalTable: "StoreFronts",
|
|
||||||
principalColumn: "Id",
|
|
||||||
onDelete: ReferentialAction.Restrict);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
|
||||||
name: "IX_StoreInventory_StoreFrontId",
|
|
||||||
table: "StoreInventory",
|
|
||||||
column: "StoreFrontId");
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "StoreInventory");
|
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "StoreFronts");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,195 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200408192800_RodUpdate")]
|
|
||||||
partial class RodUpdate
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.2")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("LONGTEXT");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<byte>("RodOwned")
|
|
||||||
.HasColumnType("tinyint unsigned");
|
|
||||||
|
|
||||||
b.Property<byte>("RodUsed")
|
|
||||||
.HasColumnType("tinyint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.ItemOffer", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("OfferId")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("Amount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong>("BuyerId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<bool>("IsPurchaseFromStore")
|
|
||||||
.HasColumnType("tinyint(1)");
|
|
||||||
|
|
||||||
b.Property<bool>("IsSellOffer")
|
|
||||||
.HasColumnType("tinyint(1)");
|
|
||||||
|
|
||||||
b.Property<ulong>("ItemId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("OfferAmount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong?>("StoreFrontId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("StoreId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("OfferId");
|
|
||||||
|
|
||||||
b.HasIndex("StoreFrontId");
|
|
||||||
|
|
||||||
b.ToTable("ItemOffer");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreFront", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("StoreItemType")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("StoreFronts");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreInventory", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("InvId")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("Amount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<string>("Item")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<int>("Price")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong?>("StoreFrontId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("InvId");
|
|
||||||
|
|
||||||
b.HasIndex("StoreFrontId");
|
|
||||||
|
|
||||||
b.ToTable("StoreInventory");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.ItemOffer", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Kehyeedra3.Services.Models.StoreFront", null)
|
|
||||||
.WithMany("Offers")
|
|
||||||
.HasForeignKey("StoreFrontId");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreInventory", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Kehyeedra3.Services.Models.StoreFront", null)
|
|
||||||
.WithMany("Items")
|
|
||||||
.HasForeignKey("StoreFrontId");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class RodUpdate : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AddColumn<byte>(
|
|
||||||
name: "RodOwned",
|
|
||||||
table: "Fishing",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: (byte)0);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<byte>(
|
|
||||||
name: "RodUsed",
|
|
||||||
table: "Fishing",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: (byte)0);
|
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "ItemOffer",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
OfferId = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
BuyerId = table.Column<ulong>(nullable: false),
|
|
||||||
StoreId = table.Column<ulong>(nullable: false),
|
|
||||||
ItemId = table.Column<ulong>(nullable: false),
|
|
||||||
Amount = table.Column<int>(nullable: false),
|
|
||||||
OfferAmount = table.Column<int>(nullable: false),
|
|
||||||
IsPurchaseFromStore = table.Column<bool>(nullable: false),
|
|
||||||
IsSellOffer = table.Column<bool>(nullable: false),
|
|
||||||
StoreFrontId = table.Column<ulong>(nullable: true)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_ItemOffer", x => x.OfferId);
|
|
||||||
table.ForeignKey(
|
|
||||||
name: "FK_ItemOffer_StoreFronts_StoreFrontId",
|
|
||||||
column: x => x.StoreFrontId,
|
|
||||||
principalTable: "StoreFronts",
|
|
||||||
principalColumn: "Id",
|
|
||||||
onDelete: ReferentialAction.Restrict);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
|
||||||
name: "IX_ItemOffer_StoreFrontId",
|
|
||||||
table: "ItemOffer",
|
|
||||||
column: "StoreFrontId");
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "ItemOffer");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "RodOwned",
|
|
||||||
table: "Fishing");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "RodUsed",
|
|
||||||
table: "Fishing");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,198 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Kehyeedra3;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
|
||||||
[Migration("20200428191620_Bootlefish")]
|
|
||||||
partial class Bootlefish
|
|
||||||
{
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasAnnotation("ProductVersion", "3.1.2")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Inventory")
|
|
||||||
.HasColumnType("LONGTEXT");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastFish")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Lvl")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<byte>("RodOwned")
|
|
||||||
.HasColumnType("tinyint unsigned");
|
|
||||||
|
|
||||||
b.Property<byte>("RodUsed")
|
|
||||||
.HasColumnType("tinyint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("TXp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Xp")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Fishing");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.ItemOffer", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("OfferId")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("Amount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong>("BuyerId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<bool>("IsPurchaseFromStore")
|
|
||||||
.HasColumnType("tinyint(1)");
|
|
||||||
|
|
||||||
b.Property<bool>("IsSellOffer")
|
|
||||||
.HasColumnType("tinyint(1)");
|
|
||||||
|
|
||||||
b.Property<ulong>("ItemId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("OfferAmount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong?>("StoreFrontId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("StoreId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("OfferId");
|
|
||||||
|
|
||||||
b.HasIndex("StoreFrontId");
|
|
||||||
|
|
||||||
b.ToTable("ItemOffer");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("Created")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Message")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<ulong>("Send")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Reminders");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreFront", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("StoreItemType")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong>("UserId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("StoreFronts");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreInventory", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("InvId")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<int>("Amount")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<string>("Item")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<int>("Price")
|
|
||||||
.HasColumnType("int");
|
|
||||||
|
|
||||||
b.Property<ulong?>("StoreFrontId")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.HasKey("InvId");
|
|
||||||
|
|
||||||
b.HasIndex("StoreFrontId");
|
|
||||||
|
|
||||||
b.ToTable("StoreInventory");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.User", b =>
|
|
||||||
{
|
|
||||||
b.Property<ulong>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<string>("Avatar")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.Property<string>("GeneralInventory")
|
|
||||||
.HasColumnType("LONGTEXT");
|
|
||||||
|
|
||||||
b.Property<ulong>("LastMine")
|
|
||||||
.HasColumnType("bigint unsigned");
|
|
||||||
|
|
||||||
b.Property<long>("Money")
|
|
||||||
.HasColumnType("bigint");
|
|
||||||
|
|
||||||
b.Property<string>("Username")
|
|
||||||
.HasColumnType("longtext CHARACTER SET utf8mb4");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Users");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.ItemOffer", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Kehyeedra3.Services.Models.StoreFront", null)
|
|
||||||
.WithMany("Offers")
|
|
||||||
.HasForeignKey("StoreFrontId");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Kehyeedra3.Services.Models.StoreInventory", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Kehyeedra3.Services.Models.StoreFront", null)
|
|
||||||
.WithMany("Items")
|
|
||||||
.HasForeignKey("StoreFrontId");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class Bootlefish : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "GeneralInventory",
|
|
||||||
table: "Users",
|
|
||||||
type: "LONGTEXT",
|
|
||||||
nullable: true);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "GeneralInventory",
|
|
||||||
table: "Users");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Metadata;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
namespace Kehyeedra3.Migrations
|
|
||||||
{
|
|
||||||
public partial class Beatlefish : Migration
|
|
||||||
{
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "BattleFishObject",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
FishId = table.Column<ulong>(nullable: false)
|
|
||||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
||||||
FishType = table.Column<byte>(nullable: false),
|
|
||||||
Xp = table.Column<ulong>(nullable: false),
|
|
||||||
NextXp = table.Column<ulong>(nullable: false),
|
|
||||||
Lvl = table.Column<int>(nullable: false),
|
|
||||||
Name = table.Column<string>(nullable: true),
|
|
||||||
UserId = table.Column<ulong>(nullable: true)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_BattleFishObject", x => x.FishId);
|
|
||||||
table.ForeignKey(
|
|
||||||
name: "FK_BattleFishObject_Users_UserId",
|
|
||||||
column: x => x.UserId,
|
|
||||||
principalTable: "Users",
|
|
||||||
principalColumn: "Id",
|
|
||||||
onDelete: ReferentialAction.Restrict);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
|
||||||
name: "IX_BattleFishObject_UserId",
|
|
||||||
table: "BattleFishObject",
|
|
||||||
column: "UserId");
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "BattleFishObject");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,8 +9,8 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||||||
namespace Kehyeedra3.Migrations
|
namespace Kehyeedra3.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
[DbContext(typeof(ApplicationDbContext))]
|
||||||
[Migration("20200502180209_Beatlefish")]
|
[Migration("20200504150903_basedmigration")]
|
||||||
partial class Beatlefish
|
partial class basedmigration
|
||||||
{
|
{
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
{
|
{
|
||||||
@@ -34,6 +34,9 @@ namespace Kehyeedra3.Migrations
|
|||||||
b.Property<ulong>("Lvl")
|
b.Property<ulong>("Lvl")
|
||||||
.HasColumnType("bigint unsigned");
|
.HasColumnType("bigint unsigned");
|
||||||
|
|
||||||
|
b.Property<int>("Prestige")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
b.Property<byte>("RodOwned")
|
b.Property<byte>("RodOwned")
|
||||||
.HasColumnType("tinyint unsigned");
|
.HasColumnType("tinyint unsigned");
|
||||||
|
|
||||||
189
Kehyeedra3/Migrations/20200504150903_basedmigration.cs
Normal file
189
Kehyeedra3/Migrations/20200504150903_basedmigration.cs
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore.Metadata;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
namespace Kehyeedra3.Migrations
|
||||||
|
{
|
||||||
|
public partial class basedmigration : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "Fishing",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
Id = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
LastFish = table.Column<ulong>(nullable: false),
|
||||||
|
Xp = table.Column<ulong>(nullable: false),
|
||||||
|
TXp = table.Column<ulong>(nullable: false),
|
||||||
|
Lvl = table.Column<ulong>(nullable: false),
|
||||||
|
RodOwned = table.Column<byte>(nullable: false),
|
||||||
|
RodUsed = table.Column<byte>(nullable: false),
|
||||||
|
Prestige = table.Column<int>(nullable: false),
|
||||||
|
Inventory = table.Column<string>(type: "LONGTEXT", nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_Fishing", x => x.Id);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "Reminders",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
Id = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
Created = table.Column<ulong>(nullable: false),
|
||||||
|
Send = table.Column<ulong>(nullable: false),
|
||||||
|
UserId = table.Column<ulong>(nullable: false),
|
||||||
|
Message = table.Column<string>(nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_Reminders", x => x.Id);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "StoreFronts",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
Id = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
UserId = table.Column<ulong>(nullable: false),
|
||||||
|
StoreItemType = table.Column<int>(nullable: false)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_StoreFronts", x => x.Id);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "Users",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
Id = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
Avatar = table.Column<string>(nullable: true),
|
||||||
|
Username = table.Column<string>(nullable: true),
|
||||||
|
Money = table.Column<long>(nullable: false),
|
||||||
|
LastMine = table.Column<ulong>(nullable: false),
|
||||||
|
GeneralInventory = table.Column<string>(type: "LONGTEXT", nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_Users", x => x.Id);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "ItemOffer",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
OfferId = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
BuyerId = table.Column<ulong>(nullable: false),
|
||||||
|
StoreId = table.Column<ulong>(nullable: false),
|
||||||
|
ItemId = table.Column<ulong>(nullable: false),
|
||||||
|
Amount = table.Column<int>(nullable: false),
|
||||||
|
OfferAmount = table.Column<int>(nullable: false),
|
||||||
|
IsPurchaseFromStore = table.Column<bool>(nullable: false),
|
||||||
|
IsSellOffer = table.Column<bool>(nullable: false),
|
||||||
|
StoreFrontId = table.Column<ulong>(nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_ItemOffer", x => x.OfferId);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_ItemOffer_StoreFronts_StoreFrontId",
|
||||||
|
column: x => x.StoreFrontId,
|
||||||
|
principalTable: "StoreFronts",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "StoreInventory",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
InvId = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
Item = table.Column<string>(nullable: true),
|
||||||
|
Amount = table.Column<int>(nullable: false),
|
||||||
|
Price = table.Column<int>(nullable: false),
|
||||||
|
StoreFrontId = table.Column<ulong>(nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_StoreInventory", x => x.InvId);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_StoreInventory_StoreFronts_StoreFrontId",
|
||||||
|
column: x => x.StoreFrontId,
|
||||||
|
principalTable: "StoreFronts",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "BattleFishObject",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
FishId = table.Column<ulong>(nullable: false)
|
||||||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||||
|
FishType = table.Column<byte>(nullable: false),
|
||||||
|
Xp = table.Column<ulong>(nullable: false),
|
||||||
|
NextXp = table.Column<ulong>(nullable: false),
|
||||||
|
Lvl = table.Column<int>(nullable: false),
|
||||||
|
Name = table.Column<string>(nullable: true),
|
||||||
|
UserId = table.Column<ulong>(nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_BattleFishObject", x => x.FishId);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_BattleFishObject_Users_UserId",
|
||||||
|
column: x => x.UserId,
|
||||||
|
principalTable: "Users",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_BattleFishObject_UserId",
|
||||||
|
table: "BattleFishObject",
|
||||||
|
column: "UserId");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_ItemOffer_StoreFrontId",
|
||||||
|
table: "ItemOffer",
|
||||||
|
column: "StoreFrontId");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_StoreInventory_StoreFrontId",
|
||||||
|
table: "StoreInventory",
|
||||||
|
column: "StoreFrontId");
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "BattleFishObject");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Fishing");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "ItemOffer");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Reminders");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "StoreInventory");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Users");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "StoreFronts");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -32,6 +32,9 @@ namespace Kehyeedra3.Migrations
|
|||||||
b.Property<ulong>("Lvl")
|
b.Property<ulong>("Lvl")
|
||||||
.HasColumnType("bigint unsigned");
|
.HasColumnType("bigint unsigned");
|
||||||
|
|
||||||
|
b.Property<int>("Prestige")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
b.Property<byte>("RodOwned")
|
b.Property<byte>("RodOwned")
|
||||||
.HasColumnType("tinyint unsigned");
|
.HasColumnType("tinyint unsigned");
|
||||||
|
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ namespace Kehyeedra3.Services.Models
|
|||||||
public ulong Lvl { get; set; } = 0;
|
public ulong Lvl { get; set; } = 0;
|
||||||
public byte RodOwned { get; set; } = 0;
|
public byte RodOwned { get; set; } = 0;
|
||||||
public byte RodUsed { get; set; } = 0;
|
public byte RodUsed { get; set; } = 0;
|
||||||
|
public int Prestige { get; set; } = 0;
|
||||||
|
|
||||||
[Column(TypeName="LONGTEXT")]
|
[Column(TypeName="LONGTEXT")]
|
||||||
public string Inventory { get; set; } = "{}";
|
public string Inventory { get; set; } = "{}";
|
||||||
|
|||||||
Reference in New Issue
Block a user