已采纳回答 / 321654741
输入完后按ESC,再输入:wq回车好像,我都是用Nano,编辑完直接Ctrl+x,y回车,回车就好了,比较顺手,你可以查下linux的文本编辑看看
2017-08-25
三篇都看完了。。没什么大坑。学得比较顺利,老师的三篇教程我觉得挺适合入门的。老师教得通俗直接,比较好懂。另外,也渐渐喜欢上了laravel框架,准备投入到项目实战中
2017-08-23
达达 5.4版本太短问题解决
找到App/Providers/AppServiceProviders.php
添加use Illuminate\Support\Facades\Schema;
和
public function boot()
{
//
Schema::defaultStringLength(191);
}
重新执行php artisan migrate(如果先前执行过会报错,请先把localhost里的数据表删除,再执行)
找到App/Providers/AppServiceProviders.php
添加use Illuminate\Support\Facades\Schema;
和
public function boot()
{
//
Schema::defaultStringLength(191);
}
重新执行php artisan migrate(如果先前执行过会报错,请先把localhost里的数据表删除,再执行)
2017-08-14
最赞回答 / MrMarko
composer show --all (这里填你需要的包 可以看到所有包的版本)然后composer require (你需要的包):版本号这样下载即可
2017-08-12
create table students(
id int not null primary key auto_increment,
name varchar(255) not null default '' comment '姓名',
age int unsigned not null default 0 comment '年龄',
id int not null primary key auto_increment,
name varchar(255) not null default '' comment '姓名',
age int unsigned not null default 0 comment '年龄',
2017-08-12
sex int unsigned not null default 10 comment '性别',
created_at int not null default 0 comment '新增时间',
updated_at int not null default 0 comment '修改时间'
)engine=innodb default charset = utf8 auto_increment = 1001 comment='学生表';
created_at int not null default 0 comment '新增时间',
updated_at int not null default 0 comment '修改时间'
)engine=innodb default charset = utf8 auto_increment = 1001 comment='学生表';
2017-08-12