Skip to content

Commit

Permalink
default lastname to be an empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
GlorifiedPig committed May 22, 2020
1 parent 92a8099 commit 72f1199
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

GlorifiedBanking.SQL.Query( "CREATE TABLE IF NOT EXISTS `gb_players`( `SteamID` VARCHAR(32) NOT NULL, `Balance` BIGINT(64) NOT NULL, `LastName` VARCHAR(64) NOT NULL , PRIMARY KEY( `SteamID` ) )" )
GlorifiedBanking.SQL.Query( "CREATE TABLE IF NOT EXISTS `gb_players`( `SteamID` VARCHAR(32) NOT NULL, `Balance` BIGINT(64) NOT NULL, `LastName` VARCHAR(64) DEFAULT '' , PRIMARY KEY( `SteamID` ) )" )

local startingBalance = GlorifiedBanking.Config.STARTING_BALANCE
hook.Add( "PlayerInitialSpawn", "GlorifiedBanking.SQLPlayer.PlayerInitialSpawn", function( ply )
Expand Down

0 comments on commit 72f1199

Please sign in to comment.