laravel 数据库操作(表、字段)
1)创建表(make:migration create),例如创建 articles
php artisan make:migration create_articles_table
运行命令后,会在 /database/migrations/ 生成对应的数据库迁移文件,通过修改文件里的 up 方法 和 down 文件,来创建数据表和删除数据表
public function up()
{
Schema::create('articles', function (Blueprint $table) {
$table->increments('id');
$table->string('title',50);
$table->longText('content');
$table->timestamps();
});
}
public function down()
{
Schema::drop('articles');
}
运行 php artisan migrate 命令后,即可生效
PS:cretae 创建表时,字段要想得完善一些,后期不能修改这个文件了(修改或删除字段,需要新建一个数据库迁移文件,下面说)
详情的字段类型和操作,看这里 http://laravelacademy.org/post/6171.html#ipt_kb_toc_6171_8
命令 | 描述 |
---|---|
$table->bigIncrements('id'); |
自增ID,类型为bigint |
$table->bigInteger('votes'); |
等同于数据库中的BIGINT类型 |
$table->binary('data'); |
等同于数据库中的BLOB类型 |
$table->boolean('confirmed'); |
等同于数据库中的BOOLEAN类型 |
$table->char('name', 4); |
等同于数据库中的CHAR类型 |
$table->date('created_at'); |
等同于数据库中的DATE类型 |
$table->dateTime('created_at'); |
等同于数据库中的DATETIME类型 |
$table->dateTimeTz('created_at'); |
等同于数据库中的DATETIME类型(带时区) |
$table->decimal('amount', 5, 2); |
等同于数据库中的DECIMAL类型,带一个精度和范围 |
$table->double('column', 15, 8); |
等同于数据库中的DOUBLE类型,带精度, 总共15位数字,小数点后8位. |
$table->enum('choices', ['foo', 'bar']); |
等同于数据库中的 ENUM类型 |
$table->float('amount'); |
等同于数据库中的 FLOAT 类型 |
$table->increments('id'); |
数据库主键自增ID |
$table->integer('votes'); |
等同于数据库中的 INTEGER 类型 |
$table->ipAddress('visitor'); |
等同于数据库中的 IP 地址 |
$table->json('options'); |
等同于数据库中的 JSON 类型 |
$table->jsonb('options'); |
等同于数据库中的 JSONB 类型 |
$table->longText('description'); |
等同于数据库中的 LONGTEXT 类型 |
$table->macAddress('device'); |
等同于数据库中的 MAC 地址 |
$table->mediumIncrements('id'); |
自增ID,类型为无符号的mediumint |
$table->mediumInteger('numbers'); |
等同于数据库中的 MEDIUMINT类型 |
$table->mediumText('description'); |
等同于数据库中的 MEDIUMTEXT类型 |
$table->morphs('taggable'); |
添加一个 INTEGER类型的 taggable_id 列和一个 STRING类型的 taggable_type 列 |
$table->nullableTimestamps(); |
和 timestamps() 一样但允许 NULL值. |
$table->rememberToken(); |
添加一个 remember_token 列: VARCHAR(100) NULL. |
$table->smallIncrements('id'); |
自增ID,类型为无符号的smallint |
$table->smallInteger('votes'); |
等同于数据库中的 SMALLINT 类型 |
$table->softDeletes(); |
新增一个 deleted_at 列 用于软删除. |
$table->string('email'); |
等同于数据库中的 VARCHAR 列 . |
$table->string('name', 100); |
等同于数据库中的 VARCHAR,带一个长度 |
$table->text('description'); |
等同于数据库中的 TEXT 类型 |
$table->time('sunrise'); |
等同于数据库中的 TIME类型 |
$table->timeTz('sunrise'); |
等同于数据库中的 TIME 类型(带时区) |
$table->tinyInteger('numbers'); |
等同于数据库中的 TINYINT 类型 |
$table->timestamp('added_on'); |
等同于数据库中的 TIMESTAMP 类型 |
$table->timestampTz('added_on'); |
等同于数据库中的 TIMESTAMP 类型(带时区) |
$table->timestamps(); |
添加 created_at 和 updated_at 列 |
$table->timestampsTz(); |
添加 created_at 和 updated_at 列(带时区) |
$table->unsignedBigInteger('votes'); |
等同于数据库中无符号的 BIGINT 类型 |
$table->unsignedInteger('votes'); |
等同于数据库中无符号的 INT 类型 |
$table->unsignedMediumInteger('votes'); |
等同于数据库中无符号的 MEDIUMINT 类型 |
$table->unsignedSmallInteger('votes'); |
等同于数据库中无符号的 SMALLINT 类型 |
$table->unsignedTinyInteger('votes'); |
等同于数据库中无符号的 TINYINT 类型 |
$table->uuid('id'); |
等同于数据库的UUID |
非空、默认值等修改操作看这里 http://laravelacademy.org/post/6171.html#ipt_kb_toc_6171_10
修改器 | 描述 |
---|---|
->after('column') |
将该列置于另一个列之后 (仅适用于MySQL) |
->comment('my comment') |
添加注释信息 |
->default($value) |
指定列的默认值 |
->first() |
将该列置为表中第一个列 (仅适用于MySQL) |
->nullable() |
允许该列的值为NULL |
->storedAs($expression) |
创建一个存储生成列(只支持MySQL) |
->unsigned() |
设置 integer 列为 UNSIGNED |
->virtualAs($expression) |
创建一个虚拟生成列(只支持MySQL) |
2)修改已创建的数据表字段(make:migration add)
想要修改已创建的数据表,不能直接改原来的 migrate 文件,要新建一个迁移文件,命令如下:
php artisan make:migration add_description_to_articles_table --table=articles
php artisan make:migration change_description_on_articles_table --table=articles
PS:其实migrate 文件的名字是怎么的都无所谓的,主要是里面的内容,不过名字都是要尽量写规范一点,让别人看到名字就知道是什么意思
添加或修改字段的操作是非常相似的,后者只是多了一个change()方法
新增字段:
public function up()
{
Schema::table('articles', function (Blueprint $table) {
$table->string('description')->nullable()->after('title');
});
}
public function down()
{
Schema::table('articles', function (Blueprint $table) {
$table->dropColumn('description');
});
}
修改字段:
public function up()
{
Schema::table('articles', function (Blueprint $table) {
$table->string('description', 200)->change();
});
}
public function down()
{
Schema::table('articles', function (Blueprint $table) {
//
});
}
运行 php artisan migrate 命令后,即可生效
3)使用索引
可用索引类型:
命令 | 描述 |
---|---|
$table->primary('id'); |
添加主键索引 |
$table->primary(['first', 'last']); |
添加混合索引 |
$table->unique('email'); |
添加唯一索引 |
$table->unique('state', 'my_index_name'); |
指定自定义索引名称,如果不指定,laravel会自动给它起个名字 |
$table->index('state'); |
添加普通索引 |
删除索引:
命令 | 描述 |
---|---|
$table->dropPrimary('users_id_primary'); |
从 “users”表中删除主键索引 |
$table->dropUnique('users_email_unique'); |
从 “users”表中删除唯一索引 |
$table->dropIndex('geo_state_index'); |
从 “geo”表中删除普通索引 |
外键约束(references...on...):
Schema::table('posts', function ($table) {
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');
});
删除外键索引:
$table->dropForeign('user_id');
更详细的文档看这里:http://laravelacademy.org/post/6171.html