7 lines
235 B
SQL
7 lines
235 B
SQL
-- 1531597616 UP add-user-signatures
|
|
alter table companies add column signature_file text;
|
|
|
|
update companies set signature_file = 'https://s3.amazonaws.com/integreat-signature-images/Dan_Sig.jpg' where name = 'Campbell Brewing Co';
|
|
|
|
|