001package io.ebean.config.dbplatform.mariadb;
002
003import io.ebean.annotation.Platform;
004import io.ebean.config.dbplatform.mysql.BaseMySqlPlatform;
005
006/**
007 * MariaDB platform.
008 */
009public class MariaDbPlatform extends BaseMySqlPlatform {
010
011  public MariaDbPlatform() {
012    super();
013    this.platform = Platform.MARIADB;
014    this.historySupport = new MariaDbHistorySupport();
015  }
016}