mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-27 16:56:28 -04:00
Added database/sql
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
declare
|
||||
cnt number;
|
||||
begin
|
||||
select count(*) into cnt
|
||||
from user_tab_columns
|
||||
where table_name = 'PLAYER_OBJECTS' and column_name = 'CURRENT_QUEST';
|
||||
if (cnt = 0) then
|
||||
execute immediate 'alter table player_objects add current_quest int';
|
||||
end if;
|
||||
end;
|
||||
/
|
||||
|
||||
update version_number set version_number=221, min_version_number=221;
|
||||
Reference in New Issue
Block a user