8 lines
228 B
SQL
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
|
|
); |