Files
src-1.2/game/server/database/schema/biographies.tab
T
2014-01-17 07:03:16 -07:00

8 lines
183 B
SQL

create table biographies -- NO_IMPORT
(
object_id number(20),
biography varchar2(1024),
constraint pk_biographies primary key (object_id)
);
grant select on biographies to public;