Remove now unused sql directory

remotes/origin/enhancement/email-actions
Andrey Antukh 2014-01-30 18:58:17 +01:00
parent 06f3bd44ae
commit 60ba17ef2f
2 changed files with 0 additions and 13 deletions

View File

@ -1,3 +0,0 @@
alter table base_site rename to domains_domain;
alter table base_sitemember rename to domains_domainmember;
delete from south_migrationhistory;

View File

@ -1,10 +0,0 @@
CREATE OR REPLACE LANGUAGE plpython2u;
CREATE OR REPLACE FUNCTION unpickle (data text)
RETURNS text[]
AS $$
import base64
import pickle
return pickle.loads(base64.b64decode(data))
$$ LANGUAGE plpython2u IMMUTABLE;