mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-03 03:16:01 -04:00
Added database/sql
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
declare
|
||||
cnt number;
|
||||
begin
|
||||
select count(*) into cnt
|
||||
from user_tab_columns
|
||||
where table_name = 'CLUSTER_LIST' and column_name = 'ONLINE_TUTORIAL_LIMIT';
|
||||
if (cnt = 0) then
|
||||
execute immediate 'alter table cluster_list add online_tutorial_limit number default 350';
|
||||
end if;
|
||||
end;
|
||||
/
|
||||
update version_number set version_number=228, min_version_number=228;
|
||||
Reference in New Issue
Block a user