Skip to content

Commit

Permalink
Adds sort_order to deferred_bindings table
Browse files Browse the repository at this point in the history
  • Loading branch information
daftspunk committed Feb 21, 2024
1 parent 28539e6 commit f05d875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ public function up()
$table->string('slave_type');
$table->integer('slave_id');
$table->string('session_key');
$table->mediumText('pivot_data')->nullable();
$table->boolean('is_bind')->default(true);
$table->integer('sort_order')->nullable();
$table->timestamps();
});
}
Expand Down

This file was deleted.

0 comments on commit f05d875

Please sign in to comment.