blob: 2f50ff24be2ba4374617625288fbeda57705249e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use IBatisNet;
drop table if exists Categories;
create table Categories
(
Category_Id int not null AUTO_INCREMENT,
Category_Name varchar(32),
Category_Guid varchar(36),
primary key (Category_Id)
) TYPE=INNODB;
|