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
18 lines
617 B
SQL
18 lines
617 B
SQL
-- Migration: Create band_media table
|
|
-- Created: 2025-12-02
|
|
|
|
CREATE TABLE IF NOT EXISTS band_media (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
band_id INT NOT NULL,
|
|
type ENUM('image', 'video') NOT NULL,
|
|
url VARCHAR(500) NOT NULL,
|
|
title VARCHAR(255),
|
|
is_featured BOOLEAN DEFAULT FALSE,
|
|
sort_order INT DEFAULT 0,
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
FOREIGN KEY (band_id) REFERENCES bands(id) ON DELETE CASCADE,
|
|
INDEX idx_band_id (band_id),
|
|
INDEX idx_type (type),
|
|
INDEX idx_sort_order (sort_order)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|