Files
demo-wsglw8/migrations/001_create_todos_table.php
2026-02-17 14:09:28 +00:00

20 lines
490 B
PHP

<?php
/**
* Migration: Create todos table
*
* Creates the main todos table with all necessary fields for managing todo items.
*/
$pdo->exec("
CREATE TABLE IF NOT EXISTS todos (
id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(255) NOT NULL,
description TEXT,
is_completed BOOLEAN DEFAULT FALSE,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
)
");