11 lines
275 B
MySQL
11 lines
275 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `coordinate` on the `Cliente` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Cliente" DROP COLUMN "coordinate",
|
||
|
|
ADD COLUMN "lat" DOUBLE PRECISION,
|
||
|
|
ADD COLUMN "lon" DOUBLE PRECISION;
|