post crud
This commit is contained in:
@ -18,8 +18,8 @@ class PostMigration extends Migration
|
||||
{
|
||||
Manager::schema()->create('post', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('post', 255)->nullable(false);
|
||||
$table->integer('user_id');
|
||||
$table->string('post', 3000)->nullable(false);
|
||||
$table->string('username', 255)->nullable(false);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user