Skip to content

Commit

Permalink
Merge pull request #25 from envor/main
Browse files Browse the repository at this point in the history
strings for optional uuid types
  • Loading branch information
inmanturbo authored Jun 4, 2024
2 parents ebb217e + 861be0a commit 6f89e2c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.6.0
uses: dependabot/fetch-metadata@v2.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fix-php-code-style-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: Fix PHP code style issues
uses: aglipanci/laravel-pint-action@2.3.1
uses: aglipanci/laravel-pint-action@2.4

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `one-app` will be documented in this file.

## v1.0.19 - 2024-03-22

### What's Changed

* fix folio make command by @inmanturbo in https://github.com/envor/one-app/pull/21

**Full Changelog**: https://github.com/envor/one-app/compare/v1.0.18...v1.0.19

## v1.0.18 - 2024-03-22

### What's Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->uuid('uuid')->index()->unique();
$table->string('uuid')->index()->unique();
$table->string('type')->nullable();
$table->string('name');
$table->string('email')->unique();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
{
Schema::create('teams', function (Blueprint $table) {
$table->id();
$table->uuid('uuid')->index()->unique();
$table->string('uuid')->index()->unique();
$table->foreignId('user_id')->index();
$table->string('name');
$table->string('domain')->nullable()->index()->unique();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
{
Schema::create('team_invitations', function (Blueprint $table) {
$table->id();
$table->uuid('uuid')->index()->unique();
$table->string('uuid')->index()->unique();
$table->foreignId('team_id')->constrained()->cascadeOnDelete();
$table->string('email');
$table->string('role')->nullable();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up()
{
Schema::create('datastores', function (Blueprint $table) {
$table->id();
$table->uuid('uuid')->index()->unique();
$table->string('uuid')->index()->unique();
$table->string('name')->index()->unique();
$table->text('migration_path')->nullable();
$table->string('driver');
Expand Down

0 comments on commit 6f89e2c

Please sign in to comment.