feat: add schema-mariadb.sql file (#4524)

#### What type of PR is this?
/kind feature

#### What this PR does / why we need it:
spring.sql.init.platform 增加 mariadb 参数支持
适配 1Panel 安装 halo 时 选择 mariadb


```release-note
None
```
pull/4514/head^2
zhengkunwang 2023-08-31 10:36:12 +08:00 committed by GitHub
parent 22571367fa
commit ed98a163fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
create table if not exists extensions
(
name varchar(255) not null,
data longblob,
version bigint,
primary key (name)
);