9 lines
228 B
SQL
9 lines
228 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `type` to the `Sprite` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Sprite` ADD COLUMN `type` VARCHAR(191) NOT NULL;
|