Kombucha.sql.stg

22 lines | 318 B Blame History Raw Download
group Kombucha: EntitySqlDao;

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;
>>