10 lines
275 B
SQL
10 lines
275 B
SQL
/*
|
|
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;
|