mirror of
				https://github.com/veganhacktivists/arabot.git
				synced 2025-10-31 09:47:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			596 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			596 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| /*
 | |
|   Warnings:
 | |
| 
 | |
|   - You are about to drop the column `endedTime` on the `Restrict` table. All the data in the column will be lost.
 | |
|   - You are about to drop the column `endedTime` on the `TempBan` table. All the data in the column will be lost.
 | |
|   - Added the required column `endTime` to the `TempBan` table without a default value. This is not possible if the table is not empty.
 | |
| 
 | |
| */
 | |
| -- AlterTable
 | |
| ALTER TABLE "Restrict" DROP COLUMN "endedTime",
 | |
| ADD COLUMN     "endTime" TIMESTAMP(3);
 | |
| 
 | |
| -- AlterTable
 | |
| ALTER TABLE "TempBan" DROP COLUMN "endedTime",
 | |
| ADD COLUMN     "endTime" TIMESTAMP(3) NOT NULL;
 | 
