You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
564 B

BEGIN;
-- Application: itfprofiles
-- Model: Person
ALTER TABLE `itfprofiles_person`
DROP COLUMN `email_validated`;
ALTER TABLE `itfprofiles_person`
DROP COLUMN `reset_token`;
ALTER TABLE `itfprofiles_person`
DROP COLUMN `validate_token`;
-- Model: Occupation
ALTER TABLE `itfprofiles_occupation`
DROP COLUMN `parent_id`;
ALTER TABLE `itfprofiles_occupation`
ADD `occupation_type` varchar(64);
ALTER TABLE `itfprofiles_occupation`
ADD `extra_text` bool;
-- Model: City
-- Table missing: itfprofiles_city
-- Model: Location
DROP TABLE 'itfprofiles_location';