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