Files
storage_fresco/initdata/locked.py
2019-05-23 13:36:01 +00:00

11 lines
252 B
Python

#!/usr/bin/python
storages = ['S001','S002','S003','S004']
x = 16
y = 12
for i in range (1, x + 1):
for j in range (1, y + 1):
for storage in storages:
print ("INSERT INTO Lockedslots VALUES ('%s', %d, %d, 'startup');" % (storage, i, j))