+/- table definition

Query

CREATE TABLE `checkins`  (
  `id` integer,
  `license_id` text NOT NULL,
  `machine_id` text NOT NULL,
  `created_at` text NOT NULL,
  `ip_address` text NULL,
  PRIMARY KEY (`id`)
)