diff options
-rw-r--r-- | style.css | 4 | ||||
-rw-r--r-- | test/notes.sql | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -195,4 +195,8 @@ header { margin: 0; padding: 1rem 0; } + nav span.right { + text-align: center; + float: none; + } } diff --git a/test/notes.sql b/test/notes.sql index fbabe4e..3ba322f 100644 --- a/test/notes.sql +++ b/test/notes.sql @@ -3,7 +3,7 @@ USE yota_db; CREATE TABLE activities( `id` int(11) not null auto_increment primary key, - `approved` boolean not null default false; + `approved` boolean not null default false, `specialCall` varchar(50) not null, `fromTime` datetime not null, `toTime` datetime not null, @@ -12,8 +12,8 @@ CREATE TABLE activities( `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; + `operatorPhone` varchar(50) not null, + `qso` int not null default 0 ) charset=utf8; CREATE TABLE admins( |