Schema::create('articles', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('title')->nullable();
$table->mediumText('description')->nullable();
$table->tinyInteger('category')->default(0);
$table->string('source')->nullable();
$table->string('image')->nullable();
$table->integer('user_id')->default(0);
$table->boolean('published')->default(null);
$table->boolean('moderation')->default(0);
$table->timestamps();
});