44c320d8fa
Track required workspace crates, scripts, and historical diesel migrations so the repository contains the complete runnable backend baseline. Made-with: Cursor
15 lines
255 B
SQL
15 lines
255 B
SQL
-- Your SQL goes here
|
|
|
|
create table resource_note
|
|
(
|
|
id varchar not null
|
|
primary key
|
|
unique,
|
|
created_at timestamp,
|
|
created_by varchar,
|
|
serial_no varchar,
|
|
is_delete boolean,
|
|
resource_pos jsonb
|
|
);
|
|
|