-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge v2.2.2 from upstream #63
Merge v2.2.2 from upstream #63
Conversation
Some fixes, auto language removal (so buggy) and replenishable status
Complete renewal of the Ukrainian language from our toloka.to friends
Remove unused ranks functionality
Fix empty birthday list
Disable Bugsnag by default
Display source language if no user language variable
Release preparation Crowdin language pack update
Release 2.2.2 🌞
c06e5a2
to
4855f21
Compare
Було би добре перед цим вирішити #46 |
Там в базі всього дві колонки в таблиці дропнули - не думаю, що завадить #46 diff --git a/install/sql/mysql.sql b/install/sql/mysql.sql
index 9c5cdb2f..7949a0dd 100644
--- a/install/sql/mysql.sql
+++ b/install/sql/mysql.sql
@@ -856,8 +856,6 @@ INSERT INTO `bb_quota_limits` (`quota_limit_id`, `quota_desc`, `quota_limit`) VA
CREATE TABLE `bb_ranks` (
`rank_id` smallint(5) UNSIGNED NOT NULL,
`rank_title` varchar(50) NOT NULL DEFAULT '',
- `rank_min` mediumint(8) NOT NULL DEFAULT 0,
- `rank_special` tinyint(1) NOT NULL DEFAULT 1,
`rank_image` varchar(255) NOT NULL DEFAULT '',
`rank_style` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
@@ -866,8 +864,8 @@ CREATE TABLE `bb_ranks` (
-- Dumping data for table `bb_ranks`
--
-INSERT INTO `bb_ranks` (`rank_id`, `rank_title`, `rank_min`, `rank_special`, `rank_image`, `rank_style`) VALUES
-(1, 'Адміністратор', -1, 1, 'styles/images/ranks/admin.png', 'colorAdmin');
+INSERT INTO `bb_ranks` (`rank_id`, `rank_title`, `rank_image`, `rank_style`) VALUES
+(1, 'Адміністратор', 'styles/images/ranks/admin.png', 'colorAdmin');
-- -------------------------------------------------------- Як людина з немалим досвідом розробки автоматсистем міграції - Phinx не айс :( Плюс якщо використовувати програмні міграції (у Phinx можна або SQL, або PHP код юзати в міграціях), то згенерується дещо інша структура - типу все, що |
Ще є doctrine із Symfony, її точно можна використовувати окремо. В крайньому випадку можна просто .sql файли і мініатюрний скрипт, який перевіряє версію і виконує ті файли, яких не вистачає. |
@konfuciusu Хм, якось я доктрину й не врахував, подумав, що весь фреймворк потребує. Зараз дивлюсь на їх міграції - і поки що цікавше наче за phinx виглядає. Помацаю doctrine, поки @AIlkiv зробить PR з тим, що в нього вийшло з phinx |
No description provided.