10 lines
181 B
MySQL
10 lines
181 B
MySQL
|
|
create table fad_oa.ACT_GE_PROPERTY
|
||
|
|
(
|
||
|
|
NAME_ varchar(64) not null
|
||
|
|
primary key,
|
||
|
|
VALUE_ varchar(300) null,
|
||
|
|
REV_ int null
|
||
|
|
)
|
||
|
|
collate = utf8mb3_bin;
|
||
|
|
|