7 lines
143 B
MySQL
7 lines
143 B
MySQL
|
CREATE TABLE logs (
|
||
|
executed_at timestamp without time zone default now(),
|
||
|
uid int,
|
||
|
cmd text NOT NULL,
|
||
|
cwd text
|
||
|
);
|