Kombucha.sql.stg

22 lines | 355 B Blame History Raw Download
import "org/killbill/billing/util/entity/dao/EntitySqlDao.sql.stg"

tableName() ::= "kombucha"

historyTableName() ::= "kombucha_history"

tableFields(prefix) ::= <<
  <prefix>tea
, <prefix>mushroom
, <prefix>sugar
>>

tableValues() ::= <<
  :tea
, :mushroom
, :sugar
>>

isIsTimeForKombucha() ::= <<
select hour(current_timestamp(0)) = 17 as is_time;
>>