@@ -7,6 +7,46 @@ const FILES_DATA: FileNode[] = [
7
7
name : 'Files' ,
8
8
type : FileNodeType . folder ,
9
9
children : [
10
+ {
11
+ name : 'schema.sql' ,
12
+ type : FileNodeType . file ,
13
+ code : {
14
+ language : 'sql' ,
15
+ uri : 'schema.sql' ,
16
+ value : [
17
+ 'CREATE TABLE dbo.EmployeePhoto (' ,
18
+ ' EmployeeId INT NOT NULL PRIMARY KEY,' ,
19
+ ' Photo VARBINARY(MAX) FILESTREAM NULL,' ,
20
+ ' MyRowGuidColumn UNIQUEIDENTIFIER NOT NULL ROWGUIDCOL UNIQUE DEFAULT NEWID()' ,
21
+ ');'
22
+ ] . join ( '\n' )
23
+ }
24
+ } ,
25
+ {
26
+ name : 'component.style.css' ,
27
+ type : FileNodeType . file ,
28
+ code : {
29
+ language : 'css' ,
30
+ uri : 'component.style.css' ,
31
+ value : [
32
+ 'html {' ,
33
+ ' background-color: #e2e2e2;' ,
34
+ ' margin: 0;' ,
35
+ ' padding: 0;' ,
36
+ '}' ,
37
+ '' ,
38
+ 'body {' ,
39
+ ' background-color: #fff;' ,
40
+ ' border-top: solid 10px #000;' ,
41
+ ' color: #333;' ,
42
+ ' font-size: .85em;' ,
43
+ ' font-family: "Segoe UI","HelveticaNeue-Light", sans-serif;' ,
44
+ ' margin: 0;' ,
45
+ ' padding: 0;' ,
46
+ '}'
47
+ ] . join ( '\n' )
48
+ }
49
+ } ,
10
50
{
11
51
name : 'json.json' ,
12
52
type : FileNodeType . file ,
@@ -79,31 +119,6 @@ const FILES_DATA: FileNode[] = [
79
119
'}'
80
120
] . join ( '\n' )
81
121
}
82
- } ,
83
- {
84
- name : 'component.style.css' ,
85
- type : FileNodeType . file ,
86
- code : {
87
- language : 'css' ,
88
- uri : 'component.style.css' ,
89
- value : [
90
- 'html {' ,
91
- ' background-color: #e2e2e2;' ,
92
- ' margin: 0;' ,
93
- ' padding: 0;' ,
94
- '}' ,
95
- '' ,
96
- 'body {' ,
97
- ' background-color: #fff;' ,
98
- ' border-top: solid 10px #000;' ,
99
- ' color: #333;' ,
100
- ' font-size: .85em;' ,
101
- ' font-family: "Segoe UI","HelveticaNeue-Light", sans-serif;' ,
102
- ' margin: 0;' ,
103
- ' padding: 0;' ,
104
- '}'
105
- ] . join ( '\n' )
106
- }
107
122
}
108
123
]
109
124
} ,
0 commit comments