migrate_rental_client.sql 166 B

12345
  1. USE inventory_db;
  2. ALTER TABLE rental_prices
  3. ADD COLUMN client_id INT(11) NULL AFTER item_id,
  4. ADD FOREIGN KEY (client_id) REFERENCES clients(id) ON DELETE SET NULL;