mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
10 lines
445 B
PHP
10 lines
445 B
PHP
<?php
|
|
// This migration adds an "email" column to the members table.
|
|
// It allows the household member to receive notifications when their subscriptions are about to expire.
|
|
|
|
$columnQuery = $db->query("SELECT * FROM pragma_table_info('household') where name='email'");
|
|
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) === false;
|
|
|
|
if ($columnRequired) {
|
|
$db->exec('ALTER TABLE household ADD COLUMN email TEXT DEFAULT ""');
|
|
} |