Skip to content

Commit 83f6557

Browse files
authored
Merge pull request #144 from ebean-orm/wip/91-early-checksum-2
Change the column order only for create table
2 parents c79dd22 + f942235 commit 83f6557

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ebean-migration/src/main/resources/migration-support/default-create-table.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
create table ${table} (
22
id integer not null,
3+
mchecksum integer not null,
34
mtype varchar(1) not null,
4-
mstatus varchar(10) not null,
55
mversion varchar(150) not null,
66
mcomment varchar(150) not null,
7-
mchecksum integer not null,
7+
mstatus varchar(10) not null,
88
run_on timestamp not null,
99
run_by varchar(30) not null,
1010
run_time integer not null,

ebean-migration/src/main/resources/migration-support/sqlserver-create-table.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
create table ${table} (
22
id integer not null,
3+
mchecksum integer not null,
34
mtype varchar(1) not null,
4-
mstatus varchar(10) not null,
55
mversion varchar(150) not null,
66
mcomment varchar(150) not null,
7-
mchecksum integer not null,
7+
mstatus varchar(10) not null,
88
run_on datetime2 not null,
99
run_by varchar(30) not null,
1010
run_time integer not null,

0 commit comments

Comments
 (0)