143fe3d488
- Implemented clean MVC architecture with Router, Controller, and Model base classes - Created database migrations for users, bands, bookings, reviews, and availability - Set up Tailwind CSS with yellow color scheme and modern design - Added Alpine.js for reactive JavaScript components - Configured Vite for asset building and hot module replacement - Created authentication and role-based middleware - Implemented helper functions and configuration system - Added comprehensive README with setup instructions - Configured Apache with proper rewrite rules and security headers - Set up Composer and npm package management with modern dependencies
24 lines
974 B
SQL
24 lines
974 B
SQL
-- Migration: Create reviews table
|
|
-- Created: 2025-12-02
|
|
|
|
CREATE TABLE IF NOT EXISTS reviews (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
band_id INT NOT NULL,
|
|
booking_id INT NOT NULL,
|
|
customer_id INT NOT NULL,
|
|
rating INT NOT NULL CHECK (rating BETWEEN 1 AND 5),
|
|
comment TEXT,
|
|
is_approved BOOLEAN DEFAULT FALSE,
|
|
is_visible BOOLEAN DEFAULT TRUE,
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
FOREIGN KEY (band_id) REFERENCES bands(id) ON DELETE CASCADE,
|
|
FOREIGN KEY (booking_id) REFERENCES bookings(id) ON DELETE CASCADE,
|
|
FOREIGN KEY (customer_id) REFERENCES users(id) ON DELETE CASCADE,
|
|
UNIQUE KEY unique_booking_review (booking_id),
|
|
INDEX idx_band_id (band_id),
|
|
INDEX idx_customer_id (customer_id),
|
|
INDEX idx_rating (rating),
|
|
INDEX idx_is_approved (is_approved)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|