12 lines
443 B
SQL
12 lines
443 B
SQL
-- Migration: Create gallery table
|
|
-- Description: Stores images promoted from chat to the community gallery.
|
|
|
|
CREATE TABLE IF NOT EXISTS gallery (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
image_url VARCHAR(255) NOT NULL,
|
|
username VARCHAR(100) NOT NULL,
|
|
caption VARCHAR(255) DEFAULT NULL,
|
|
likes INT DEFAULT 0,
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|