summaryrefslogtreecommitdiffhomepage
path: root/packages/console/core/migrations/20251125223403_famous_magik/migration.sql
blob: ad195f555d0a0e730d08f9e153269b222cc13f1e (plain)
1
2
3
4
5
6
7
8
CREATE TABLE `ip` (
	`ip` varchar(45) NOT NULL,
	`time_created` timestamp(3) NOT NULL DEFAULT (now()),
	`time_updated` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
	`time_deleted` timestamp(3),
	`usage` int,
	CONSTRAINT `ip_ip_pk` PRIMARY KEY(`ip`)
);