migration.V7__add_users.sql Maven / Gradle / Ivy
CREATE TABLE `users` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`team_id` bigint(20) NOT NULL ,
`first_name` varchar(256),
`email` varchar(256),
`last_name` varchar(256),
`created_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`is_deleted` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_team_id` (`team_id`)
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy