You are here
添加时间类型的字段 这是migrate migration中的代码
星期三, 2016-05-04 10:40 — adminshiping1
- public function up()
- {
- Schema::create('articles', function(Blueprint $table)
- {
- $table->increments('id');
- $table->string('title');
- $table->text('body');
- $table->timestamps();
- $table->timestamp('published_at');
- });
- }