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

net.moznion.mysql.diff.model.OrdinaryKey Maven / Gradle / Ivy

Go to download

Detect and extract diff between two table declarations from schema of MySQL

There is a newer version: 1.1.0
Show newest version
package net.moznion.mysql.diff.model;

import lombok.Getter;

@Getter
public class OrdinaryKey {
  private final String name;
  private final String column;

  public OrdinaryKey(String name, String column) {
    this.name = name;
    this.column = column;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy