All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.maxwell_schema_bootstrap.sql Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
CREATE TABLE IF NOT EXISTS `bootstrap` (
  id              bigint auto_increment NOT NULL primary key,
  database_name   varchar(255) charset 'utf8' NOT NULL,
  table_name      varchar(255) charset 'utf8' NOT NULL,
  where_clause    text default NULL,
  is_complete     tinyint(1) unsigned NOT NULL default 0,
  inserted_rows   bigint(20) unsigned NOT NULL DEFAULT 0,
  total_rows      bigint(20) unsigned NOT NULL DEFAULT 0,
  created_at      DATETIME default NULL,
  started_at      DATETIME default NULL,
  completed_at    DATETIME default NULL,
  binlog_file     varchar(255) default NULL,
  binlog_position int unsigned default 0,
  client_id       varchar(255) charset 'latin1' not null default 'maxwell',
  comment         varchar(255) charset 'utf8' default NULL
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy