mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Fix stories migration
This commit is contained in:
parent
a6b7898d98
commit
1236f902cf
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ class CreateStoriesTable extends Migration
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::create('stories', function (Blueprint $table) {
|
Schema::create('stories', function (Blueprint $table) {
|
||||||
$table->increments('bigIncrements');
|
$table->bigIncrements('id');
|
||||||
$table->bigInteger('profile_id')->unsigned();
|
$table->bigInteger('profile_id')->unsigned();
|
||||||
$table->timestamp('published_at')->nullable();
|
$table->timestamp('published_at')->nullable();
|
||||||
$table->timestamp('expires_at')->nullable();
|
$table->timestamp('expires_at')->nullable();
|
||||||
|
|
Loading…
Reference in a new issue