AECC database project.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Fixed syntax errors.

-12
-8
api/v1/create/index.php
··· 100 100 return $out; 101 101 } 102 102 103 - m_id VARCHAR(9) NOT NULL, 104 - name VARCHAR(30) NOT NULL, 105 - second_name VARCHAR(30) NOT NULL, 106 - last_name VARCHAR(30) NOT NULL, 107 - second_last_name VARCHAR(30) NOT NULL, 108 - email VARCHAR(40) NOT NULL, 109 - phone_number VARCHAR(15) NOT NULL, 110 - status ENUM("Active", "Inactive") NOT NULL, 111 103 function member() { 112 104 include("../../../lib/db.php"); 113 105 $out = "";
-4
api/v1/update/index.php
··· 192 192 return $out; 193 193 } 194 194 195 - type ENUM("Expense", "Income") NOT NULL, 196 - date DATETIME DEFAULT CURRENT_TIMESTAMP, 197 - quantity NUMERIC(5,0) NOT NULL, 198 - p_id INT, 199 195 function transaction() { 200 196 include("../../../lib/db.php"); 201 197 $out = "";