Publish HTML quickly. https://html.house
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 regels
316 B

  1. DROP TABLE IF EXISTS `houses`;
  2. CREATE TABLE `houses` (
  3. `id` char(8) COLLATE utf8mb4_bin NOT NULL,
  4. `view_count` INT(6) NOT NULL,
  5. `html` text COLLATE utf8mb4_bin NOT NULL,
  6. `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  7. PRIMARY KEY (`id`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;