dbcon_old removal, table prefixing

Prefixes the tables properly with ss13_, and removes active references to dbcon_old and related procs.
This commit is contained in:
skull132
2016-01-13 15:59:36 +02:00
parent 09a6c86180
commit c7ae4df416
14 changed files with 80 additions and 82 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ var/list/admin_ranks = list() //list of all ranks with associated rights
load_admins()
return
var/DBQuery/query = dbcon.NewQuery("SELECT ckey, rank, level, flags FROM erro_admin")
var/DBQuery/query = dbcon.NewQuery("SELECT ckey, rank, level, flags FROM ss13_admin")
query.Execute()
while(query.NextRow())
var/ckey = query.item[1]