diff options
| author | Mateja <mail@matejamaric.com> | 2020-10-02 19:36:16 +0200 |
|---|---|---|
| committer | Mateja <mail@matejamaric.com> | 2020-10-02 19:36:16 +0200 |
| commit | 86613978c06546af098e96ed9b9496a3dd67ad62 (patch) | |
| tree | a4f1fce8b99146bf9d1f2b267ed28c89a2beadd0 /notes.sql | |
| parent | 0d8992a2762d6a2b983d9aa1c2944d6cebef7371 (diff) | |
| download | old-php-yota-86613978c06546af098e96ed9b9496a3dd67ad62.tar.gz old-php-yota-86613978c06546af098e96ed9b9496a3dd67ad62.zip | |
Work on reservation...
Diffstat (limited to 'notes.sql')
| -rw-r--r-- | notes.sql | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,15 +3,17 @@ USE yota_db; CREATE TABLE activities( `id` int(11) not null auto_increment primary key, + `approved` boolean not null default false; + `specialCall` varchar(50) not null, `fromTime` datetime not null, `toTime` datetime not null, - `specialCall` varchar(50) not null, `frequencies` varchar(255) not null, `modes` varchar(255) not null, `operatorCall` varchar(50) not null, `operatorName` varchar(50) not null, `operatorEmail` varchar(100) not null, `operatorPhone` varchar(50) not null + `qso` int not null default 0; ) charset=utf8; CREATE TABLE admins( |
