Skip to content

Commit 0a29d52

Browse files
committed
Merge branch 'release/3.0.2'
2 parents a37bf2a + e683eb1 commit 0a29d52

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.0.2] - 2022-03-22
8+
9+
- Rename migration class (duplicate class name).
10+
711
## [3.0.1] - 2022-03-15
812

913
- Update `october/system` version constraint.

updates/20190123_000001_create_tables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use October\Rain\Database\Updates\Migration;
99
use October\Rain\Support\Facades\Schema;
1010

11-
final class CreateTables extends Migration
11+
final class CreateBasicAuthenticationTables extends Migration
1212
{
1313
public function up(): void
1414
{

updates/20220314_000003_add_whitelist_column_to_credentials_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use October\Rain\Database\Updates\Migration;
99
use October\Rain\Support\Facades\Schema;
1010

11-
final class CreateTables extends Migration
11+
final class AddWhitelistColumnToCredentialsTable extends Migration
1212
{
1313
public function up(): void
1414
{

updates/version.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ v3.0.0:
1111
- 20220314_000003_add_whitelist_column_to_credentials_table.php
1212
v3.0.1:
1313
- "Update october/system version constraint."
14+
v3.0.2:
15+
- "Rename migration class (duplicate class name)."

0 commit comments

Comments
 (0)