Skip to content

Commit 0b415df

Browse files
author
Bryan Smit
committed
Fix using the right Schema facade
1 parent 13b7adf commit 0b415df

3 files changed

Lines changed: 3 additions & 3 deletions

updates/20190123_000001_create_tables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use October\Rain\Database\Schema\Blueprint;
88
use October\Rain\Database\Updates\Migration;
9-
use October\Rain\Support\Facades\Schema;
9+
use Schema;
1010

1111
final class CreateBasicAuthenticationTables extends Migration
1212
{

updates/20220314_000002_drop_excluded_urls_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use October\Rain\Database\Schema\Blueprint;
88
use October\Rain\Database\Updates\Migration;
9-
use October\Rain\Support\Facades\Schema;
9+
use Schema;
1010

1111
final class DropExcludedUrlsTable extends Migration
1212
{

updates/20220314_000003_add_whitelist_column_to_credentials_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use October\Rain\Database\Schema\Blueprint;
88
use October\Rain\Database\Updates\Migration;
9-
use October\Rain\Support\Facades\Schema;
9+
use Schema;
1010

1111
final class AddWhitelistColumnToCredentialsTable extends Migration
1212
{

0 commit comments

Comments
 (0)