欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

添加时间类型的字段 这是migrate migration中的代码

  1. public function up()
  2. {
  3. Schema::create('articles', function(Blueprint $table)
  4. {
  5. $table->increments('id');
  6. $table->string('title');
  7. $table->text('body');
  8. $table->timestamps();
  9. $table->timestamp('published_at');
  10. });
  11. }
普通分类: