mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
* added details to performers and studios * added deathdate, hair_color and weight to performers * Simplify performer/studio create mutations * Add changelog and recategorised Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
5 lines
272 B
SQL
5 lines
272 B
SQL
ALTER TABLE `performers` ADD COLUMN `details` text;
|
|
ALTER TABLE `performers` ADD COLUMN `death_date` date;
|
|
ALTER TABLE `performers` ADD COLUMN `hair_color` varchar(255);
|
|
ALTER TABLE `performers` ADD COLUMN `weight` integer;
|
|
ALTER TABLE `studios` ADD COLUMN `details` text; |