Sakuno.KanColle.Amatsukaze.Game.Services.Records.ResourcesRecords.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 resources(" +
                    "time INTEGER PRIMARY KEY NOT NULL, " +
                    "fuel INTEGER NOT NULL, " +
                    "bullet INTEGER NOT NULL, " +
                    "steel INTEGER NOT NULL, " +
                    "bauxite INTEGER NOT NULL, " +
                    "instant_construction INTEGER NOT NULL, " +
                    "bucket INTEGER NOT NULL, " +
                    "development_material INTEGER NOT NULL, " +
                    "improvement_material INTEGER NOT NULL);";

                rCommand.ExecuteNonQuery();
            }
        }
        protected override void Load()