'SET foreign_key_checks=0;

--
-- Table: `errors`
--
CREATE TABLE `errors` (
  `code` integer NOT NULL,
  `id` integer NOT NULL auto_increment,
  `message` varchar(255) NOT NULL,
  INDEX `pk_id` (`id`),
  PRIMARY KEY (`id`)
);

--
-- Table: `pets`
--
CREATE TABLE `pets` (
  `id` bigint NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `tag` varchar(255) NULL,
  INDEX `pk_id` (`id`),
  PRIMARY KEY (`id`)
);

SET foreign_key_checks=1;'
