8 lines
221 B
MySQL
8 lines
221 B
MySQL
|
-- AlterTable
|
||
|
ALTER TABLE "Image" RENAME COLUMN "created_at" TO "createdAt";
|
||
|
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "Image" RENAME COLUMN "expires_at" TO "expiresAt";
|
||
|
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "Image" RENAME COLUMN "file" TO "name";
|