Sakuno.KanColle.Amatsukaze.Game.Services.Records.RankingPointsRecords.CreateTable C# (CSharp) Method

CreateTable() protected method

protected CreateTable ( ) : void
return void
        protected override void CreateTable()
        {
            using (var rCommand = Connection.CreateCommand())
            {
                rCommand.CommandText =
                    "CREATE TABLE IF NOT EXISTS ranking_point_bonus(" +
                        "sortie INTEGER NOT NULL PRIMARY KEY REFERENCES sortie(id), " +
                        "step INTEGER NOT NULL, " +
                        "time INTEGER NOT NULL, " +
                        "point INTEGER NOT NULL);";

                rCommand.ExecuteNonQuery();
            }
        }