11 lines
244 B
SQL
11 lines
244 B
SQL
create table fad_oa.FLW_EV_DATABASECHANGELOGLOCK
|
|
(
|
|
ID int not null
|
|
primary key,
|
|
LOCKED bit not null,
|
|
LOCKGRANTED datetime null,
|
|
LOCKEDBY varchar(255) null
|
|
)
|
|
charset = utf8mb4;
|
|
|