summaryrefslogtreecommitdiffhomepage
path: root/packages/console/core/migrations/20251016214520_short_bulldozer/migration.sql
blob: 70f52c96d0e4296c5b21a1f2c7ed72ea8fee72fb (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE `auth` (
	`id` varchar(30) 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),
	`provider` enum('email','github','google') NOT NULL,
	`subject` varchar(255) NOT NULL,
	`account_id` varchar(30) NOT NULL,
	CONSTRAINT `provider` UNIQUE(`provider`,`subject`)
);