[sql] Customer

Viewer

copydownloadembedprintName: Customer
  1. CREATE TABLE `tb_customer` (
  2.         `customer_id` INT(10) NOT NULL AUTO_INCREMENT,
  3.         `name` TEXT(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  4.         `address` TEXT(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  5.         `phone` TEXT(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  6.         `email` TEXT(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  7.         `updated` DATETIME NOT NULL,
  8.         PRIMARY KEY (`customer_id`)
  9. );

Editor

You can edit this paste and save as new:


File Description
  • Customer
  • Paste Code
  • 22 Oct-2020
  • 423 Bytes
You can Share it: