一个程序文件可以在SVN仓库形成多个版本
例1 11.php
12
点击commit完成
例2 11.php
编辑如下内容:
12
#创建商品属性对应表
create table cz_goods_attr(
goods_attr_id int unsigned not null auto_increment primary key comment '编号ID',
goods_id int unsigned not null default 0 comment '商品ID',
attr_id smallint unsigned not null default 0 comment '属性ID',
attr_value varchar(255) not null default '' comment '属性值',
attr_price decimal(10,2) not null default 0 comment '属性价格',
index goods_id(goods_id),
index attr_id(attr_id)
)engine=MyISAM charset=utf8;
如图所示,再一次提交:
例3 11.php
12
#创建商品属性对应表
create table cz_goods_attr(
goods_attr_id int unsigned not null auto_increment primary key comment '编号ID',
goods_id int unsigned not null default 0 comment '商品ID',
attr_id smallint unsigned not null default 0 comment '属性ID',
attr_value varchar(255) not null default '' comment '属性值',
attr_price decimal(10,2) not null default 0 comment '属性价格',
index goods_id(goods_id),
index attr_id(attr_id)
)engine=MyISAM charset=utf8;
#创建商品属性对应表
create table cz_goods_attr(
goods_attr_id int unsigned not null auto_increment primary key comment '编号ID',
goods_id int unsigned not null default 0 comment '商品ID',
attr_id smallint unsigned not null default 0 comment '属性ID',
attr_value varchar(255) not null default '' comment '属性值',
attr_price decimal(10,2) not null default 0 comment '属性价格',
index goods_id(goods_id),
index attr_id(attr_id)
)engine=MyISAM charset=utf8;
如图所示:
如何去查看日志?
右键->svn->show log
输出结果:
右键->svn->Update to version
回到之前的版本