11 lines
372 B
MySQL
11 lines
372 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- Made the column `lat` on table `Cliente` required. This step will fail if there are existing NULL values in that column.
|
||
|
|
- Made the column `lon` on table `Cliente` required. This step will fail if there are existing NULL values in that column.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Cliente" ALTER COLUMN "lat" SET NOT NULL,
|
||
|
|
ALTER COLUMN "lon" SET NOT NULL;
|