salix/db/.archive/224801/00-claimRma.sql

8 lines
236 B
MySQL
Raw Normal View History

2022-10-24 16:37:38 +00:00
CREATE TABLE `vn`.`claimRma` (
id INT UNSIGNED auto_increment NOT NULL PRIMARY KEY,
code varchar(100) NOT NULL,
created timestamp DEFAULT current_timestamp() NOT NULL,
workerFk INTEGER UNSIGNED NOT NULL
)
ENGINE=InnoDB;