tech.ydb.yoj.repository.db.SchemaOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoj-repository Show documentation
Show all versions of yoj-repository Show documentation
Core YOJ (YDB ORM for Java) abstractions and APIs for domain entities, repositories, transactions etc.
The newest version!
package tech.ydb.yoj.repository.db;
public interface SchemaOperations {
void create();
/**
* Drops the table. Does nothing if the table does not {@link #exists() exist}.
*/
void drop();
boolean exists();
}