如何在Laravel中创建数据库模式(表)?

时间:2015-08-24 20:24:56

标签: database laravel

我是Laravel的新手。我试图在Laravel中创建数据库。我试着在控制台中用:

Schema::create

但它没有找到'命令。我应该安装什么或如何创建数据库?

5 个答案:

答案 0 :(得分:7)

首先你必须在config文件夹中的database.php中设置数据库名,用户名和密码。看起来像

 php artisan migrate:install

如果您使用的是xampp,请右键单击您的项目文件夹,然后单击“使用composer here

然后运行以下命令

php artisan make:migration create_users_table

你可以创建像

这样的表格
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateFlightsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('flights', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->string('airline');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('flights');
    }
}

迁移结构

迁移类包含两种方法:向上和向下。 up方法用于向数据库添加新表,列或索引,而down方法应该简单地反转up方法执行的操作。

在这两种方法中,您可以使用Laravel架构构建器来表达式创建和修改表。要了解“架构”构建器上提供的所有方法,请查看其文档。例如,让我们看一下创建航班表的示例迁移:

php artisan

要知道所有工匠命令按照命令运行

{{1}}

更多阅读以下文档http://laravel.com/docs/5.1/migrations

答案 1 :(得分:5)

我的工作示例:

创建新的工匠命令:

php artisan make:command mysql

App \ Console \ Commands \ mysql.php的内容:

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;

class mysql extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'mysql:createdb {name?}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Create a new mysql database schema based on the database config file';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $schemaName = $this->argument('name') ?: config("database.connections.mysql.database");
        $charset = config("database.connections.mysql.charset",'utf8mb4');
        $collation = config("database.connections.mysql.collation",'utf8mb4_unicode_ci');

        config(["database.connections.mysql.database" => null]);

        $query = "CREATE DATABASE IF NOT EXISTS $schemaName CHARACTER SET $charset COLLATE $collation;";

        DB::statement($query);

        config(["database.connections.mysql.database" => $schemaName]);

    }
}

然后运行:(schema_name是可选的)

php artisan mysql:createdb schema_name

答案 2 :(得分:1)

Laravel中的数据库设置

  • 在root
  • 上打开.env文件

示例: -

  DB_CONNECTION=mysql
  DB_HOST=127.0.0.1
  DB_PORT=3306
  DB_DATABASE=dbname
  DB_USERNAME=root
  DB_PASSWORD=password
  

现在运行命令

  php artisan migrate:install
  php artisan make:migration users // for creating new table 

答案 3 :(得分:0)

如果你想用工匠创建模型,请这样做:

php artisan make:model ModelName

答案 4 :(得分:0)

我刚刚创建了一个有趣的Laravel软件包,其中包含一些方便的工匠命令集,例如创建或删除数据库,转储数据库或从.sql dump加载,或查看模型中存在哪些字段(和字段类型)。

签出:https://github.com/vkovic/laravel-commando