Files
rust-actixweb-diesel-api/migrations/2020-11-29-201712_create_products/up.sql
2020-11-30 02:37:37 +05:30

8 lines
228 B
SQL

create table if not exists products
(
productid integer not null
constraint pk_products
primary key,
productname text not null,
created_at timestamp not null default current_timestamp
);