add config for print

This commit is contained in:
gowthaman 2024-07-30 11:18:24 +05:30
parent e4cbee9c16
commit 66a5a20c0c
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- apply alter tables
alter table plant add column if not exists print jsonb;

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<migration xmlns="http://ebean-orm.github.io/xml/ns/dbmigration">
<changeSet type="apply">
<addColumn tableName="plant">
<column name="print" type="jsonb"/>
</addColumn>
</changeSet>
</migration>