Warning, file /webapps/ocs-webserver/sql_code/20180422_project_plings.sql was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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`;