PRAGMA foreign_keys=OFF;--> statement-breakpoint CREATE TABLE `__new_characterOverride` ( `characterId` text PRIMARY KEY NOT NULL, `name` text, `gender` text, `age` integer, `affiliations` text, `devilFruitId` text, `hakiObservation` integer, `hakiArmament` integer, `hakiConqueror` integer, `bounty` integer, `height` real, `origin` text, `firstAppearance` integer, `pictureUrl` text, `epithets` text, `status` text, `arcId` text, `url` text, `notes` text, FOREIGN KEY (`characterId`) REFERENCES `character`(`id`) ON UPDATE no action ON DELETE no action, FOREIGN KEY (`devilFruitId`) REFERENCES `devilFruit`(`id`) ON UPDATE no action ON DELETE no action, FOREIGN KEY (`arcId`) REFERENCES `arc`(`id`) ON UPDATE no action ON DELETE no action ); --> statement-breakpoint INSERT INTO `__new_characterOverride`("characterId", "name", "gender", "age", "affiliations", "devilFruitId", "hakiObservation", "hakiArmament", "hakiConqueror", "bounty", "height", "origin", "firstAppearance", "pictureUrl", "epithets", "status", "arcId", "url", "notes") SELECT "characterId", "name", "gender", "age", "affiliations", "devilFruitId", "hakiObservation", "hakiArmament", "hakiConqueror", "bounty", "height", "origin", "firstAppearance", "pictureUrl", "epithets", "status", "arcId", "url", "notes" FROM `characterOverride`;--> statement-breakpoint DROP TABLE `characterOverride`;--> statement-breakpoint ALTER TABLE `__new_characterOverride` RENAME TO `characterOverride`;--> statement-breakpoint PRAGMA foreign_keys=ON;