首页 > 数据库技术 > 详细

ytforum(1)创建你的数据库

时间:2014-11-02 22:19:38      阅读:336      评论:0      收藏:0      [点我收藏+]

php artisan migrate:make

  create_users_table

  create_forum_groups_table

  create_forum_categories_table

  create_forum_threads_table

  create_forum_comments_table

 

function up:

  Schema::create(‘users‘,function($t){

    $t->increment(‘id‘);

    $t->string(‘username‘);

    $st->string(‘password‘);

    $t->enum(‘isAdmin‘,array(0,1)); 

    $t->timestamps();

})

down():

  Schema::drop(‘users‘)

ytforum(1)创建你的数据库

原文:http://www.cnblogs.com/jypwn/p/4070008.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!