mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Migrations
This commit is contained in:
parent
bc53ac2af8
commit
fb652805dd
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ class CreatePollVotesTable extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('poll_votes', function (Blueprint $table) {
|
Schema::create('poll_votes', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->bigInteger('status_id')->unsigned()->index();
|
$table->bigInteger('story_id')->unsigned()->nullable()->index();
|
||||||
|
$table->bigInteger('status_id')->unsigned()->nullable()->index();
|
||||||
$table->bigInteger('profile_id')->unsigned()->index();
|
$table->bigInteger('profile_id')->unsigned()->index();
|
||||||
$table->bigInteger('poll_id')->unsigned()->index();
|
$table->bigInteger('poll_id')->unsigned()->index();
|
||||||
$table->unsignedInteger('choice')->default(0)->index();
|
$table->unsignedInteger('choice')->default(0)->index();
|
||||||
|
|
Loading…
Reference in a new issue