File indexing completed on 2024-04-21 06:00:36

0001 CREATE TABLE `project_plings`
0002 (
0003     `project_plings_id` int(11)   NOT NULL AUTO_INCREMENT,
0004     `project_id`        int(11)   NOT NULL,
0005     `member_id`         int(11)   NOT NULL,
0006     `created_at`        timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
0007     `is_deleted`        int(1)             DEFAULT 0,
0008     `deleted_at`        timestamp,
0009     PRIMARY KEY (`project_plings_id`)
0010 ) ENGINE = InnoDB
0011   AUTO_INCREMENT = 1
0012   DEFAULT CHARSET = `utf8`;