forked from AdamDewberry/db-schema-migration
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchangelog.yaml
More file actions
110 lines (110 loc) · 2.56 KB
/
changelog.yaml
File metadata and controls
110 lines (110 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
databaseChangeLog:
- objectQuotingStrategy: QUOTE_ALL_OBJECTS
- changeSet:
id: TestDB-dbo-Inventory-v0.1.0
author: Generated by Adam
changes:
createTable:
catalogName: TestDB
schemaName: dbo
tableName: Inventory
columns:
- column:
name: id
type: int
constraints:
nullable: true
- column:
name: name
type: nvarchar
constraints:
nullable: true
- column:
name: quantity
type: int
constraints:
nullable: true
- changeSet:
id: TestDB-dbo-Books-v0.1.0
author: Generated by Adam
changes:
createTable:
catalogName: TestDB
schemaName: dbo
tableName: Books
columns:
- column:
name: Id
type: int
constraints:
primaryKey: true
- column:
name: Name
type: varchar
constraints:
nullable: false
- column:
name: Price
type: int
constraints:
nullable: true
- changeSet:
id: TestDB-dbo-Persons-v0.1.0
author: Generated by Adam
changes:
createTable:
catalogName: TestDB
schemaName: dbo
tableName: Persons
columns:
- column:
name: PID
type: int
constraints:
nullable: false
- column:
name: LastName
type: varchar
constraints:
nullable: false
- column:
name: FirstName
type: varchar
constraints:
nullable: true
- column:
name: Age
type: int
constraints:
nullable: true
- column:
name: City
type: varchar
constraints:
nullable: true
defaultValue: London
- changeSet:
id: TestDB-dbo-Class-v0.1.0
author: Generated by Adam
changes:
createTable:
catalogName: TestDB
schemaName: dbo
tableName: Class
columns:
- column:
name: CID
type: int
constraints:
nullable: false
- column:
name: Name
type: varchar
constraints:
nullable: true
- column:
name: Year
type: int
constraints:
nullable: true
defaultValue: 1