7 lines
166 B
SQL
7 lines
166 B
SQL
create table operation_log
|
|
(
|
|
id integer primary key autoincrement not null,
|
|
log text not null,
|
|
created_at timestamp not null default current_timestamp
|
|
);
|