TagTest::the_database_table_has_all_of_the_correct_columns PHP Method

the_database_table_has_all_of_the_correct_columns() public method

    public function the_database_table_has_all_of_the_correct_columns()
    {
        $this->table->column('id')->integer()->increments();
        $this->table->column('tag')->string()->unique();
        $this->table->column('title')->string()->notNullable();
        $this->table->column('subtitle')->string()->notNullable();
        $this->table->column('meta_description')->string();
        $this->table->column('layout')->string()->defaults(config('blog.tag_layout'));
        $this->table->column('reverse_direction')->boolean();
        $this->table->hasTimestamps();
    }