BusinessAccountFieldSqlDao.sql.stg

35 lines | 512 B Blame History Raw Download
group BusinessAccountField;

getFieldsForAccount(account_key) ::=<<
select
  account_id
, account_key
, name
, value
from bac_fields
where account_key = :account_key
;
>>

addField(account_id, account_key, name, value) ::=<<
insert into bac_fields (
  account_id
, account_key
, name
, value
) values (
  :account_id
, :account_key
, :name
, :value
);
>>

removeField(account_id, name) ::= <<
delete from bac_fields where account_id = :account_id and name = :name;
>>

test() ::= <<
select 1 from bac_fields;
>>