20 lines
968 B
SQL
20 lines
968 B
SQL
PRAGMA foreign_keys=OFF;--> statement-breakpoint
|
|
CREATE TABLE `__new_character` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`name` text NOT NULL,
|
|
`owner` integer NOT NULL,
|
|
`people` text NOT NULL,
|
|
`level` integer DEFAULT 1 NOT NULL,
|
|
`aspect` integer,
|
|
`notes` text,
|
|
`health` integer DEFAULT 0 NOT NULL,
|
|
`mana` integer DEFAULT 0 NOT NULL,
|
|
`visibility` text DEFAULT 'private' NOT NULL,
|
|
`thumbnail` blob,
|
|
FOREIGN KEY (`owner`) REFERENCES `users`(`id`) ON UPDATE cascade ON DELETE cascade
|
|
);
|
|
--> statement-breakpoint
|
|
INSERT INTO `__new_character`("id", "name", "owner", "people", "level", "aspect", "notes", "health", "mana", "visibility", "thumbnail") SELECT "id", "name", "owner", "people", "level", "aspect", "notes", "health", "mana", "visibility", "thumbnail" FROM `character`;--> statement-breakpoint
|
|
DROP TABLE `character`;--> statement-breakpoint
|
|
ALTER TABLE `__new_character` RENAME TO `character`;--> statement-breakpoint
|
|
PRAGMA foreign_keys=ON; |