mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update polls migration, add group support
This commit is contained in:
parent
7709220074
commit
bc53ac2af8
1 changed files with 32 additions and 31 deletions
|
@ -17,6 +17,7 @@ class CreatePollsTable extends Migration
|
|||
$table->bigInteger('id')->unsigned()->primary();
|
||||
$table->bigInteger('story_id')->unsigned()->nullable()->index();
|
||||
$table->bigInteger('status_id')->unsigned()->nullable()->index();
|
||||
$table->bigInteger('group_id')->unsigned()->nullable()->index();
|
||||
$table->bigInteger('profile_id')->unsigned()->index();
|
||||
$table->json('poll_options')->nullable();
|
||||
$table->json('cached_tallies')->nullable();
|
||||
|
|
Loading…
Reference in a new issue