이 기사의 내용은 Lavarel에서 일반적으로 사용되는 문인 Migration에 관한 것입니다. 이제 모든 사람과 공유합니다. 도움이 필요한 친구들은 그것을 참조할 수 있습니다.
Lavarel5.2주요 부분은 이전입니다. 자주 조작해야 하는 부분은 자주 사용하는 문장 기능만 익히면 구현하기가 훨씬 쉬워집니다
Controller
Model
View
Route
Migration
콘솔에 명령을 입력합니다.
테이블을 생성하는 명령은 동작으로 이름을 지정하는 데 사용됩니다.
php artisan make:migration create_users_table --create=users
명령 테이블을 수정하려면
php artisan make:migration add_votes_to_users_table --table=users
이렇게 하면 /database/migrations 파일
Schema::create('users', function ($table) { $table->increments('id'); $table->string('name'); });
에 해당하는 명령과 데이터베이스에 해당 유형을 만듭니다
Command | Description |
---|---|
$table->bigIncrements('id'); $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->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->json('options'); | 等同于数据库中的 JSON 类型 |
$table->jsonb('options'); | 等同于数据库中的 JSONB 类型 |
$table->longText('description'); | 等同于数据库中的 LONGTEXT 类型 |
$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->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->tinyInteger('numbers'); | 等同于数据库中的 TINYINT 类型 |
$table->timestamp('added_on'); | 等同于数据库中的 TIMESTAMP 类型 |
$table->timestamps(); | 添加 created_at 和 updated_at 列. |
$table->uuid('id'); | 자동 증가 ID, 유형은 bigint
$table->binary('data');
의 BIGINT 유형과 동일합니다. 🎜🎜동등함 데이터베이스의 BLOB 유형🎜🎜🎜🎜$table->boolean('confirmed');
🎜🎜은 데이터베이스의 BOOLEAN 유형🎜🎜🎜🎜$table-> char('name', 4);
🎜🎜데이터베이스의 CHAR 유형과 동일합니다🎜🎜🎜🎜$table->date('created_at');< /code>🎜🎜데이터베이스와 동일합니다. 🎜🎜🎜🎜<code>$table->dateTime('created_at');
🎜🎜의 DATE 유형은 데이터베이스 🎜🎜의 DATETIME 유형과 동일합니다. 🎜🎜$table->decimal( 'amount', 5, 2);
🎜🎜정밀도와 범위를 갖는 데이터베이스의 DECIMAL 유형과 동일🎜🎜🎜🎜$table ->double('column', 15, 8) ;
🎜🎜데이터베이스의 DOUBLE 유형과 동일하며 정밀도는 총 15자리, 소수점 이하 8자리입니다.🎜🎜🎜🎜< code>$table->enum('choices', ['foo' , 'bar']);🎜🎜는 데이터베이스 🎜🎜🎜🎜$table->의 ENUM 유형과 동일합니다. ;float('amount');
🎜🎜는 데이터베이스 FLOAT type🎜🎜🎜🎜$table->increments('id');
🎜🎜의 ENUM 유형과 동일합니다. 데이터베이스 기본 키 자동 증가 ID🎜🎜🎜🎜$table->integer('votes') ;
🎜🎜데이터베이스🎜🎜🎜🎜$table의 INTEGER 유형과 동일합니다. ->json('options');
🎜🎜데이터베이스의 JSON 유형과 동일합니다🎜🎜🎜🎜 $table->jsonb('options');
🎜🎜 데이터베이스🎜🎜🎜🎜$table->longText('description');</code >🎜🎜데이터베이스의 LONGTEXT 유형과 동일합니다🎜🎜🎜🎜<code>$ table->mediumInteger('numbers');
🎜🎜데이터베이스의 MEDIUMINT 유형과 동일합니다🎜🎜🎜🎜$ table->mediumText('description');
🎜 🎜데이터베이스의 MEDIUMTEXT 유형과 동일합니다🎜🎜🎜🎜$table->morphs('taggable');
🎜🎜INTEGER 유형의 taggable_id
열과 STRING🎜🎜🎜🎜$table->nullableTimestamps();
🎜🎜및 timestamps()
유형의 taggable_type
열과 동일하지만 NULL을 허용합니다. 🎜🎜🎜🎜$table->rememberToken();
🎜🎜remember_token
열 추가: VARCHAR(100) NULL.🎜🎜🎜🎜$ table->smallInteger('votes');
🎜🎜는 데이터베이스🎜🎜🎜🎜$table-> SoftDeletes();
🎜🎜의 SMALLINT 유형과 동일합니다. 소프트 삭제를 위한 deleted_at
열입니다.🎜🎜🎜🎜$table->string('email');
🎜🎜데이터베이스의 VARCHAR 열과 동일합니다.🎜🎜 🎜🎜$table->string('name', 100);
🎜🎜길이가🎜🎜🎜인 데이터베이스의 VARCHAR 열과 동일합니다. 🎜$table-> text('description');
🎜🎜데이터베이스의 TEXT 유형과 동일🎜🎜🎜🎜$table->time('sunrise');
code>🎜🎜동등함 데이터베이스의 TIME 유형에🎜🎜🎜🎜$table->tinyInteger('numbers');
🎜🎜데이터베이스의 TINYINT 유형🎜🎜🎜🎜 $table과 동일합니다. ->timestamp('add_on');
🎜🎜데이터베이스의 TIMESTAMP 유형과 동일🎜🎜🎜🎜$table->timestamps();
🎜🎜 추가 Created_at
및 updated_at
열.🎜🎜🎜🎜$table->uuid('id');
🎜🎜은 데이터베이스의 UUID와 동일합니다🎜 🎜🎜 🎜如果我们执行的是类似第二行命令的话
新生成migration里up方法的Create就会变成table,然后就可以在方法里写修改的一些代码
Schema::table('users', function ($table) { });
我们将name列的尺寸从 25 增加到 50:
$table->string('name', 50)->change();
我们还可以修改该列允许 NULL 值:
$table->string('name', 50)->nullable()->change();
重命名列
$table->renameColumn('from', 'to');
注意:暂不支持 enum类型的列的重命名。
删除列
$table->dropColumn('votes');
1
删除多个列:
$table->dropColumn(['votes', 'avatar', 'location']);
1
以上就是一些Migration的常用语句,学会Migration可以节省大量用命令行建表的时间
我把整个Lavarel系列的所有链接都更新了,欢迎大家点评
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_32198277/article/details/52592769
위 내용은 Lavarel의 일반적으로 사용되는 문 마이그레이션의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!