Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-02-01 11:17:53 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4b29abe86db5208e5d420a92232dc514193988d5
4b29abe8
1 parent
92a7e376
Suppression modification accidentellle.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
migration/creeV3Country.sql
migration/creeV3Country.sql
View file @
4b29abe
tee
creeV3Country
.
log
--
create table Country (
--
countryId int(11) NOT NULL AUTO_INCREMENT,
--
countryName varchar(100) DEFAULT NULL,
--
PRIMARY KEY ('countryId')
--
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create
table
Country
(
countryId
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
countryName
varchar
(
100
)
DEFAULT
NULL
,
PRIMARY
KEY
(
'countryId'
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
insert
into
Country
(
countryId
,
countryName
)
select
ID_PAYS
,
LIB_PAYS
from
v2
.
pays
;
select
ID_PAYS
,
LIB_PAYS
from
pays
;
-- show create table Country;
\ No newline at end of file
show
create
table
Country
;
\ No newline at end of file
...
...
Please
register
or
login
to post a comment