Packages

package migrationdsl

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class AddAdditionalField(entityType: EntityTypeId, fieldId: FieldName, fieldType: FieldTypeId, title: String, description: Option[String], example: Option[Json], settings: Option[Json]) extends MigrationDslOperation with Product with Serializable
  2. case class AddField(entityType: EntityTypeId, fieldId: FieldName, fieldType: FieldTypeId, title: String, description: Option[String], example: Option[Json], nullable: Option[Boolean], settings: Option[Json]) extends MigrationDslOperation with Product with Serializable
  3. case class AddRelation(relationType: RelationTypeId, entity1: EntityTypeId, entity2: EntityTypeId, title: String, entity1Field: FieldName, entity2Field: Option[FieldName]) extends MigrationDslOperation with Product with Serializable
  4. case class CatalogFieldSettings(code: String, multiple: Boolean) extends Product with Serializable
  5. case class CreateEntity(entityType: EntityTypeId, title: String, description: Option[String]) extends MigrationDslOperation with Product with Serializable
  6. case class DeleteEntity(entityType: EntityTypeId) extends MigrationDslOperation with Product with Serializable
  7. case class DeleteField(entityType: EntityTypeId, fieldId: FieldName) extends MigrationDslOperation with Product with Serializable
  8. case class DeleteRelation(entity1: EntityTypeId, entity2: EntityTypeId, entity1Field: FieldName) extends MigrationDslOperation with Product with Serializable
  9. case class FileFieldSettings(multiple: Boolean) extends Product with Serializable
  10. sealed trait MigrationDslOperation extends AnyRef
  11. case class StringFieldSettings(maxLength: Option[Int], multiple: Option[Boolean]) extends Product with Serializable
  12. case class TextFieldSettings(multiple: Option[Boolean]) extends Product with Serializable
  13. case class UpdateEntity(entityType: EntityTypeId, title: String, description: Option[String], settings: Option[Json]) extends MigrationDslOperation with Product with Serializable
  14. case class UpdateField(entityType: EntityTypeId, fieldId: FieldName, title: String, description: Option[String], example: Option[Json], nullable: Option[Boolean], settings: Option[Json]) extends MigrationDslOperation with Product with Serializable

Ungrouped