Files
huike-back/htyws_models/migrations/2022-09-04-161257_add_resource_note_tbl/up.sql
T

15 lines
255 B
SQL
Raw Normal View History

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