Files
ColdBreeze-chat-server-rust/migrations/20220110103458_operation_log.sql
2023-03-03 12:03:14 -05:00

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
);