10 lines
232 B
MySQL
10 lines
232 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `telephoneHq` on the `Branch` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Branch" DROP COLUMN "telephoneHq",
|
||
|
|
ADD COLUMN "telephoneNo" TEXT;
|