Add rezzing time to objects. Add Object return and traffic fields to land database. Add plumbing for auto return. Implement auto return. Contains a migration. May contain nuts.
7 lines
150 B
PL/PgSQL
7 lines
150 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE land ADD COLUMN OtherCleanTime INTEGER NOT NULL default 0;
|
|
ALTER TABLE land ADD COLUMN Dwell INTEGER NOT NULL default 0;
|
|
|
|
COMMIT;
|