mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
10 lines
332 B
SQL
10 lines
332 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `createdAt` on the `links` table. All the data in the column will be lost.
|
|
- You are about to drop the column `updatedAt` on the `links` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `links` DROP COLUMN `createdAt`,
|
|
DROP COLUMN `updatedAt`;
|