mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
10 lines
162 B
SQL
10 lines
162 B
SQL
|
|
CREATE TABLE errorlog_level_desc(
|
|
levelid NUMBER (10) DEFAULT 0 NOT NULL,
|
|
descrip VARCHAR2 (50) NOT NULL
|
|
);
|
|
|
|
grant select on errorlog_level_desc to public;
|
|
|
|
|