Example usage for org.springframework.data.cassandra.config SchemaAction RECREATE

List of usage examples for org.springframework.data.cassandra.config SchemaAction RECREATE

Introduction

In this page you can find the example usage for org.springframework.data.cassandra.config SchemaAction RECREATE.

Prototype

SchemaAction RECREATE

To view the source code for org.springframework.data.cassandra.config SchemaAction RECREATE.

Click Source Link

Document

Create each table as necessary, dropping the table first if it exists.

Usage

From source file:com.example.cassandra.convert.ConverterConfiguration.java

@Override
public SchemaAction getSchemaAction() {
    return SchemaAction.RECREATE;
}