addons-server/migrations/19-personas-fields.sql

6 строки
222 B
SQL

ALTER TABLE personas
ADD COLUMN `movers` double precision,
ADD COLUMN `popularity` integer,
ADD COLUMN `license_id` int(11) unsigned,
ADD CONSTRAINT FOREIGN KEY (`license_id`) REFERENCES `licenses` (`id`);