mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2025-05-02 14:36:15 -04:00
Almost complete site
Add dark / light theme Add social sharing on meme pages Add approving / pending admin section Improve design Add pagination on profiles Make front end date time user friendly Finish rough draft of site And Much more... Still need to fix a few minor things before it goes live. Almost complete.
This commit is contained in:
parent
52a9007882
commit
dbfda5cf9e
39 changed files with 54195 additions and 663 deletions
|
@ -20,6 +20,7 @@ class CreateUsersTable extends Migration
|
|||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->string('address', 95);
|
||||
$table->boolean('is_admin')->default(0);
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
|
|
@ -20,6 +20,9 @@ class CreateMemesTable extends Migration
|
|||
$table->string('title');
|
||||
$table->string('caption')->nullable();
|
||||
$table->string('image')->nullable();
|
||||
$table->boolean('is_approved')->default(0);
|
||||
$table->boolean('payment_pending')->default(0);
|
||||
$table->softDeletes();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -18,8 +18,7 @@ class CreateTipsTable extends Migration
|
|||
$table->foreignId('address_id')->constrained();
|
||||
$table->bigInteger('amount');
|
||||
$table->string('txid')->unique();
|
||||
$table->bigInteger('height');
|
||||
$table->boolean('is_sent')->default(0);
|
||||
$table->boolean('is_deposit');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
36
database/migrations/2021_07_31_055445_create_jobs_table.php
Normal file
36
database/migrations/2021_07_31_055445_create_jobs_table.php
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateJobsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('jobs', function (Blueprint $table) {
|
||||
$table->bigIncrements('id');
|
||||
$table->string('queue')->index();
|
||||
$table->longText('payload');
|
||||
$table->unsignedTinyInteger('attempts');
|
||||
$table->unsignedInteger('reserved_at')->nullable();
|
||||
$table->unsignedInteger('available_at');
|
||||
$table->unsignedInteger('created_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('jobs');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue