-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql_migration_files.go
1063 lines (894 loc) · 99.8 KB
/
sql_migration_files.go
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Package consent Code generated by go-bindata. (@generated) DO NOT EDIT.
// sources:
// migrations/sql/cockroach/12.sql
// migrations/sql/mysql/.gitkeep
// migrations/sql/mysql/10.sql
// migrations/sql/mysql/12.sql
// migrations/sql/mysql/4.sql
// migrations/sql/mysql/5.sql
// migrations/sql/mysql/6.sql
// migrations/sql/mysql/7.sql
// migrations/sql/mysql/8.sql
// migrations/sql/postgres/.gitkeep
// migrations/sql/postgres/10.sql
// migrations/sql/postgres/12.sql
// migrations/sql/postgres/4.sql
// migrations/sql/postgres/5.sql
// migrations/sql/postgres/6.sql
// migrations/sql/postgres/7.sql
// migrations/sql/postgres/8.sql
// migrations/sql/shared/.gitkeep
// migrations/sql/shared/1.sql
// migrations/sql/shared/11.sql
// migrations/sql/shared/2.sql
// migrations/sql/shared/3.sql
// migrations/sql/shared/9.sql
// migrations/sql/tests/.gitkeep
// migrations/sql/tests/10_test.sql
// migrations/sql/tests/11_test.sql
// migrations/sql/tests/12_test.sql
// migrations/sql/tests/1_test.sql
// migrations/sql/tests/2_test.sql
// migrations/sql/tests/3_test.sql
// migrations/sql/tests/4_test.sql
// migrations/sql/tests/5_test.sql
// migrations/sql/tests/6_test.sql
// migrations/sql/tests/7_test.sql
// migrations/sql/tests/8_test.sql
// migrations/sql/tests/9_test.sql
package consent
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
func bindataRead(data []byte, name string) ([]byte, error) {
gz, err := gzip.NewReader(bytes.NewBuffer(data))
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
clErr := gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
if clErr != nil {
return nil, err
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindataFileInfo struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
// Name return file name
func (fi bindataFileInfo) Name() string {
return fi.name
}
// Size return file size
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
// Mode return file mode
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
// Mode return file modify time
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
// IsDir return file whether a directory
func (fi bindataFileInfo) IsDir() bool {
return fi.mode&os.ModeDir != 0
}
// Sys return file is sys mode
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
var _migrationsSqlCockroach12Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\xcf\x73\xda\x3a\x10\x3e\xe3\xbf\x42\xb7\xc0\x3c\x32\xf3\x26\xef\xe5\x5d\x38\xf9\x61\xd1\x32\xa5\x26\x35\xa6\x4d\x4e\x1e\x21\xcb\xa0\xc6\x58\x54\x92\x93\x76\x3a\xfd\xdf\x3b\x06\xdb\xf8\xb7\x6c\x93\x64\xa6\x57\xeb\xdb\xd5\x7e\xbb\xdf\xee\x0a\xae\xaf\xc1\x5f\x7b\xba\xe5\x48\x12\xb0\x3e\x68\x53\x0b\xea\x36\x04\xb6\xfe\xff\x02\x82\xdd\x0f\x97\x23\x87\xa1\x50\xee\x6e\x1c\xcc\x02\x41\x02\xe9\x70\xf2\x2d\x24\x42\x82\xa1\x36\xc0\x3b\xe4\xfb\x24\xd8\x12\xf0\x84\x38\xde\x21\x3e\xfc\xf7\xef\x11\x30\x97\x36\x30\xd7\x8b\x05\xb8\xb3\xe6\x1f\x75\xeb\x01\x7c\x80\x0f\x63\x6d\xf0\x44\x38\xf5\x28\xe1\x95\xd8\xb1\x36\xc0\x3e\x8d\xdc\x53\x37\x05\xdc\xdc\xde\xe6\x10\x22\xdc\x7c\x25\x58\xd6\x9e\xc7\x91\x39\x21\xf7\x81\x24\xdf\x65\xce\xf6\x91\x1e\xc0\x86\x31\xbf\xc2\x80\xb8\x8e\xc0\xec\x40\x4a\x46\x58\x70\xaf\x2e\xdc\x28\x29\x24\x90\x14\xa3\xc8\x1e\x49\x20\xe9\x9e\x08\x89\xf6\x87\xb2\xf7\xfc\x69\x92\x1e\x03\xce\xf4\xf5\xc2\x06\x01\x7b\x1e\x8e\xc6\xda\x80\x51\x17\x47\x59\x3e\x46\x51\x0c\xc5\x63\x1c\x47\x71\x9e\x52\xe0\x50\x37\xba\xfb\x98\xce\xcf\xba\x35\x7d\xaf\x5b\x71\x36\xb2\x8e\xaf\xae\xc6\xda\xc0\x67\x5b\x1a\x38\x82\x08\x41\x59\x10\x65\x37\xc1\x1f\xf9\x9c\x9c\x9f\x30\xe7\x6a\x56\x40\xb2\x64\x1c\x14\xba\x94\x04\x38\x49\x58\xe9\x4e\x84\x79\xdd\x51\xc2\xcf\x86\xf7\x76\x39\x15\x57\x3f\x7f\x45\xa0\xb9\x69\xc0\x7b\x30\x4c\x15\x31\x3a\x7f\x8b\x13\x90\xf9\x52\x24\x58\x3a\x4a\x79\x45\x27\x6b\x73\xfe\x69\x0d\x41\x0c\x48\x34\x39\xd2\x46\x93\x06\xe9\x67\x6a\x1d\xdd\xd1\xb7\x03\x54\x72\x53\x76\x48\x83\x1c\x5f\xbc\x37\xd4\xed\xd8\x55\xdf\xea\x8e\x69\xec\x00\xa5\x90\xf3\x42\xeb\x24\xd8\x8b\x05\xf7\x12\xb2\x8a\x3d\x46\xb2\xca\x64\xbd\x41\x4f\x4d\x09\x2d\x16\xc1\x5c\x7e\x39\x16\x41\xad\x93\x3d\xd9\x6f\x08\xcf\xeb\x21\x75\x33\xd3\x17\x2b\xd8\xcc\xaa\xb0\x27\x9c\x1d\x0a\x5c\x9f\xb8\x9d\xbb\x65\xcb\x51\x50\xdf\x2b\xd5\x71\x66\x0e\x1c\x8f\x71\x40\x83\x9c\x11\xe1\x9c\xf1\x0a\x57\xdd\x74\x9c\x54\x1e\x61\x4c\x84\x70\x24\x7b\x24\x41\xb9\xa7\x52\x79\xd4\x00\xd4\xdd\xf0\x8c\x84\x13\x0a\xe2\x96\x28\x26\x99\xc9\x0a\xfb\x34\x4f\xf3\xc2\xee\x33\xd4\x7a\x97\xab\x9f\xb0\x7a\x15\xec\xbc\x5e\x5e\x73\x18\xd5\xa6\xbf\xf7\x2a\x56\xef\xbe\xe6\x8a\xb1\x8d\x17\x8a\x38\xe0\xda\xd1\xa1\xaa\x43\xeb\x67\x56\xe6\xba\x5a\x68\x46\x02\xc9\xa0\x1c\x83\xaa\x29\x9a\x7e\x1b\x83\xb2\x7b\xc5\x98\xf4\xd9\x96\x85\x8a\x77\xe7\x3f\xff\xb5\x7f\x77\x66\xb1\x2d\x84\x2b\x32\xa9\x2a\x98\x56\xe7\x52\xb1\x6d\x39\x71\x29\xaf\x3c\xa9\x56\x1c\x70\x89\x87\x42\x5f\x02\x0f\xf9\x82\x1c\xe5\x8f\xc9\x41\x2a\x61\x9c\x44\xb4\xd4\xb0\x83\x43\x03\x2a\x29\x52\x43\xab\xb6\x64\xc3\xe2\xd3\xf4\x85\x0d\xad\x2e\x2b\x42\x37\x0c\x30\x5d\x9a\x2b\xdb\xd2\xe7\xa6\xdd\xca\xe6\xfc\xba\x73\xbc\x47\x30\x5b\x5a\x70\xfe\xce\x8c\x2a\x0f\x86\xe7\x77\x1f\xb0\xe0\x0c\x5a\xd0\x9c\xc2\x55\xa3\xd3\xac\xc9\xd2\x04\x06\x5c\x40\x1b\x82\xa9\xbe\x9a\xea\x06\x9c\xd4\xf3\x51\x8c\xd2\x26\x5a\xcd\xa6\x97\xb1\xab\xf6\xdd\x97\x64\xf1\xf7\x5f\x97\x62\xa5\x92\x29\xd3\x48\xc5\x54\xa6\x71\x3a\x1b\x46\x67\x97\x57\xa3\x4f\x15\xde\x34\x6c\xf5\x74\x6f\x62\xa0\xb4\xfe\x53\x6b\x50\x7c\x6d\x97\xa2\x2f\x3d\xc7\xdb\xf6\x43\x6c\xd2\x99\xdb\x25\x8d\xf0\xd6\x6c\x56\xf0\x34\xcb\x5f\x95\x4e\xfd\x90\x2a\xfe\x00\x7f\x91\x51\xd5\x82\x53\xe1\xc9\xd0\x44\x29\x0f\x7d\x95\x2e\xd1\xb2\xff\xb1\x19\xec\x39\xd0\x0c\x6b\x79\xd7\x61\x31\x4e\xda\x1a\xd4\x03\x9b\xf7\x4c\x57\xbb\xd6\xf8\x58\x95\xf5\x78\xe5\xdc\xaa\x37\xcd\x57\x6e\xa2\xfd\x0e\x00\x00\xff\xff\xcd\x13\x83\x4b\xca\x14\x00\x00")
func migrationsSqlCockroach12SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlCockroach12Sql,
"migrations/sql/cockroach/12.sql",
)
}
func migrationsSqlCockroach12Sql() (*asset, error) {
bytes, err := migrationsSqlCockroach12SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/cockroach/12.sql", size: 5322, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysqlGitkeep = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func migrationsSqlMysqlGitkeepBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysqlGitkeep,
"migrations/sql/mysql/.gitkeep",
)
}
func migrationsSqlMysqlGitkeep() (*asset, error) {
bytes, err := migrationsSqlMysqlGitkeepBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql10Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xbd\x4e\xc3\x30\x14\x85\x77\x3f\xc5\x1d\x53\xa1\x2e\xac\x99\x8c\x7d\x8a\x22\xa2\x6b\x70\x1c\x09\x26\x2b\x22\x6e\x6b\x51\x6a\x30\x0e\x3f\x6f\x8f\x0a\x08\x75\x8a\x3a\x74\xfe\xce\xfd\x39\xdf\x72\x49\x17\xcf\x71\x93\x87\x12\xa8\x7f\x11\xca\x42\x3a\x50\xcf\xcd\x5d\x0f\x6a\x58\xe3\x9e\xb6\x5f\x63\x1e\x7c\x1a\xa6\xb2\xbd\xf4\xbb\xb4\x49\x53\xf1\x39\xbc\x4e\xe1\xad\xf8\xf7\x90\xa3\x8f\xe3\x27\x19\x9e\xcb\x51\x75\x08\xae\x63\xc8\x8b\x5a\xc8\xd6\xc1\x92\x93\x57\x2d\x66\x67\xa4\xd6\xa4\x0c\x77\xce\xca\x86\xdd\xec\x1b\x8f\xbb\x18\xf6\xc5\xc7\xd1\xaf\x9f\x68\x65\x2c\x9a\x6b\xa6\x1b\x3c\x50\xf5\x4f\x16\x64\xb1\x82\x05\x2b\x74\x7f\xbb\x7e\x59\x75\x60\x86\x49\xa3\x85\x03\x29\xd9\x29\xa9\x51\x0b\x71\xac\x46\xa7\x8f\xbd\xd0\xd6\xdc\x9e\xcf\xc9\xe9\x22\x7e\xee\x1e\xb7\x3a\x55\x45\x2d\xbe\x03\x00\x00\xff\xff\x27\x55\xac\xdf\xdf\x01\x00\x00")
func migrationsSqlMysql10SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql10Sql,
"migrations/sql/mysql/10.sql",
)
}
func migrationsSqlMysql10Sql() (*asset, error) {
bytes, err := migrationsSqlMysql10SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/10.sql", size: 479, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql12Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd5\x55\xd0\xce\xcd\x4c\x2f\x4a\x2c\x49\x55\x08\x2d\xe0\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\xa8\x4c\x29\x4a\x8c\xcf\x4f\x2c\x2d\xc9\x30\x8a\xcf\xc9\x4f\xcf\x2f\x2d\x89\x2f\x4a\x2d\x2c\x4d\x2d\x2e\x51\xf0\xf5\x77\xf1\x74\x8b\x54\x48\xce\xc9\x4c\xcd\x2b\x89\xcf\x4c\x51\x28\x4b\x2c\x4a\xce\x48\x2c\xd2\x30\x32\x35\xd5\x54\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x01\x73\xac\xb9\xb8\x90\x2d\x72\xc9\x2f\xcf\xe3\x72\x71\xf5\x71\x0d\x71\x55\x70\x0b\xf2\xf7\xc5\x6b\x55\xb8\x87\x6b\x90\x2b\x92\x4d\x9e\xc1\x50\x23\xa9\xe4\x56\x7f\x98\x13\x01\x01\x00\x00\xff\xff\x80\x80\x69\x15\x0b\x01\x00\x00")
func migrationsSqlMysql12SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql12Sql,
"migrations/sql/mysql/12.sql",
)
}
func migrationsSqlMysql12Sql() (*asset, error) {
bytes, err := migrationsSqlMysql12SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/12.sql", size: 267, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql4Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xd2\x41\x4b\x03\x31\x10\x05\xe0\xfb\xfe\x8a\xb9\xf5\x20\xbd\x78\x5d\x3c\xac\x26\x82\x90\x36\xa5\x26\xa0\xa7\x30\x6c\x86\x6e\x40\x27\x9a\x66\x11\xff\xbd\xb4\x14\x29\x92\xd4\x56\xf7\xb2\xec\xe9\x63\xde\x7b\x99\xcf\xe1\xea\x35\x6c\x12\x66\x02\xfb\xd6\x74\xca\xc8\x35\x98\xee\x56\x49\x18\x3e\x7d\x42\x17\x71\xcc\xc3\xb5\xeb\x23\x6f\x89\xb3\x4b\xf4\x3e\xd2\x36\x43\x27\x04\x1c\xfe\xc9\x3b\xcc\x0e\x47\x1f\x88\x7b\x02\x23\x9f\x0c\x2c\xad\x52\x6d\x5d\xdb\x7d\x89\x73\xe8\x31\x87\xc8\x13\xa1\x3f\x4e\x74\x03\xb2\x7f\x21\xbf\x57\x37\x09\xf9\x84\xd9\xd8\x95\xe8\xcc\x2f\x91\x1f\xa5\x29\x5f\x77\x33\x9b\xb5\x45\xa1\x12\xf3\x72\xa8\x16\x6d\x27\x15\xa2\xed\x9d\xf3\xb7\x5c\x68\xf1\x70\xff\x7c\xb2\x79\xfd\xd7\x49\x27\xb1\x6b\xf1\x0f\x78\x7d\xdc\x6f\xba\x39\x7e\xe7\x22\x7e\xf0\xf9\xed\x88\xb5\x5e\xc1\x9d\x56\x76\xb1\x2c\xc7\xb8\xbc\x94\xff\x90\xb5\x2e\x8e\xcd\x42\x21\x6d\xf3\x15\x00\x00\xff\xff\x99\xcd\x38\x04\xea\x03\x00\x00")
func migrationsSqlMysql4SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql4Sql,
"migrations/sql/mysql/4.sql",
)
}
func migrationsSqlMysql4Sql() (*asset, error) {
bytes, err := migrationsSqlMysql4SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/4.sql", size: 1002, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql5Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x93\x4f\x4b\xc4\x30\x10\xc5\xef\xf9\x14\x39\xba\xe8\x5e\xbc\xe6\x24\xb6\x87\xbd\x74\x75\xb1\xe0\x2d\xa4\xc9\xac\x3b\xa2\x89\xe6\x8f\x7f\xbe\xbd\x54\x14\x43\xe9\xac\x89\x14\x4f\x85\x32\xf3\xde\xcb\x8f\x37\xeb\x35\x3f\x7d\xc4\x3b\xaf\x22\xf0\xfe\x89\x5d\xee\xda\x8b\x9b\x96\xf7\xdd\xe6\xba\x6f\xf9\xa6\x6b\xda\x5b\x7e\x78\x37\x5e\x49\xa7\x52\x3c\x9c\x4b\x37\xec\x53\xd0\x2a\x82\x91\xe3\x0f\xb0\x11\xb5\x8a\xe8\xac\x0c\x10\xc2\xe7\xd7\x49\x34\x6f\x7c\xdb\x55\x2e\xf2\x13\xfd\x80\x60\xa3\x44\x73\xc6\x43\x1a\xee\x41\xc7\x6c\x6b\x25\xd8\x77\xba\x99\x58\xda\xd9\x30\xee\x7a\x78\x4e\x10\xa2\xd4\x68\x66\x53\x4c\xe6\x32\xcf\x95\xa8\x90\x0f\x69\x28\x93\xff\x7a\xc7\x8f\x38\x4d\x76\xea\xf1\x02\x1e\xcb\x4c\xc6\xc9\x3d\x82\x3f\x8e\x68\x42\xfd\x37\x52\xf3\xe3\xa5\xc0\x08\x33\x8a\x1b\x65\x56\x81\x8f\x70\x24\x29\x52\x96\x39\xcc\xfc\x38\x1a\xf7\x6a\x59\xb3\xdb\x5e\xfd\xef\x55\x08\x46\x9a\xfe\xb1\xf3\xa2\x58\xb0\xb0\xe5\xe5\x82\xa5\x95\x3e\xf2\xe8\x45\x5a\x4c\x27\x5e\xa4\xb7\xd5\xf2\x95\x25\x15\xec\x23\x00\x00\xff\xff\x26\xc5\x0b\x30\xb6\x05\x00\x00")
func migrationsSqlMysql5SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql5Sql,
"migrations/sql/mysql/5.sql",
)
}
func migrationsSqlMysql5Sql() (*asset, error) {
bytes, err := migrationsSqlMysql5SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/5.sql", size: 1462, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql6Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd5\x55\xd0\xce\xcd\x4c\x2f\x4a\x2c\x49\x55\x08\x2d\xe0\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\xa8\x4c\x29\x4a\x8c\xcf\x4f\x2c\x2d\xc9\x30\x8a\x4f\xce\xcf\x2b\x4e\xcd\x2b\x89\x2f\x4a\x2d\x2c\x4d\x2d\x2e\x51\x70\x74\x71\x51\x48\x4c\x2e\x52\x08\x71\x8d\x08\x51\xf0\x0b\xf5\xf1\xb1\xe6\x0a\x0d\x70\x71\x0c\x21\xa0\x2d\xd8\x35\x04\xa4\xcd\x56\x5d\xdd\x9a\x78\xbb\x7c\xfd\x5d\x3c\xdd\x22\x91\xac\xf3\x87\x59\xc9\x85\xec\x7c\x97\xfc\xf2\x3c\xe2\x0d\x75\x09\xf2\x0f\x50\x70\xf6\xf7\x09\xf5\xf5\x03\x99\x6c\xcd\x05\x08\x00\x00\xff\xff\x40\xd9\xef\x84\x0a\x01\x00\x00")
func migrationsSqlMysql6SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql6Sql,
"migrations/sql/mysql/6.sql",
)
}
func migrationsSqlMysql6Sql() (*asset, error) {
bytes, err := migrationsSqlMysql6SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/6.sql", size: 266, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql7Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xcf\x8f\xea\x36\x10\xbe\x23\xf1\x3f\xcc\x6d\x59\x75\xa1\x6a\xaf\x4f\x3d\xe4\x81\xb7\x6f\xd5\x3c\x58\x85\xa0\xb6\x27\x64\x92\x81\x58\x35\x36\x8d\x1d\xb6\xfb\xdf\x57\x49\x9c\x1f\x24\x10\x92\xc0\xee\xbb\x70\x20\xf6\xcc\x37\x9f\x3f\xcf\x8c\x67\x3c\x86\x9f\xf6\x6c\x17\x52\x8d\xb0\x3a\x0c\x07\xc3\xc1\x78\x0c\x6e\xc0\x14\x78\x54\xc0\x06\x41\x44\x9c\xc3\x5b\x80\x02\x84\x84\x43\x88\x47\x26\x23\x05\x5c\xee\x98\x00\x85\x4a\x31\x29\x00\xff\x63\x4a\xab\x27\x50\x12\x38\xea\x07\x05\x21\xee\xe5\x11\xc1\xc7\x2d\x8d\xb8\x1e\x0e\x2c\xdb\x25\x0e\xb8\xd6\x57\x9b\x40\xf0\xee\x87\x74\x2d\x69\xa4\x83\x5f\xd7\xf1\x2f\x0a\xcd\x3c\xaa\x99\x14\xeb\x10\xff\x8d\x50\x69\x48\xd7\x4f\x17\xf6\xea\xfb\x3c\xf5\xb5\x36\xbe\xd6\xcc\x87\x99\xb3\x78\x85\x19\x79\xb6\x56\xb6\xfb\xe5\x26\xc8\x20\x43\x60\x5b\xd0\x01\xd5\xf9\x97\x80\x2a\xd8\x20\x0a\x13\x84\xdf\x27\x2c\x4f\x0a\x85\x42\xdf\x3d\x1e\x1d\xa0\xd9\xee\x05\x94\x73\x14\x3b\x84\x37\xaa\xc0\x47\x8e\x1a\x7d\x18\xa9\x40\x46\xdc\x07\x21\xb5\xf9\x2f\xd9\x62\xe0\x00\xd3\x0a\xf9\xf6\xf1\x36\xe0\x85\xe7\x73\xb8\xa7\xc6\x95\x31\xa0\x52\x6e\x0f\x92\x09\x0d\x5a\x02\x15\x80\xfb\x83\x7e\x4f\x88\x17\x47\xca\x99\x6f\x0e\x26\xf3\x68\x22\x50\xa8\x63\xe8\x2c\xac\x79\xd5\x12\xe6\x2b\xdb\x1e\x0e\x56\xaf\x33\xcb\xbd\x82\x7f\x49\xdc\x9a\x81\xdf\x92\xfd\xf0\xe7\x37\xe2\x10\x98\x2f\x5c\x20\x7f\xbd\x2c\xdd\x25\x8c\x86\x03\x80\x25\xb1\xc9\xd4\x85\x5f\xe0\xd9\x59\x7c\x6f\xa5\xd5\xd4\x4e\x13\x8a\x49\x1d\x41\x0b\xc3\x93\x7c\xfd\x70\xf0\x78\x33\xbd\x99\xba\x2f\xd0\x5b\x52\x63\x4f\x7e\x4b\x16\xee\x44\x70\x06\xb9\x35\xc1\x27\x10\x5a\x58\x9e\x30\xbf\x44\xad\x5d\x96\x61\x8d\xd8\x0a\x8d\xc9\x57\x21\x81\x4b\xb1\xc3\x30\xcb\x26\x23\x19\x26\xd7\x51\xe0\x11\xc3\x84\x63\x96\xde\xd9\x2d\x0b\x95\x86\x03\xa7\x1e\x3e\x9e\x1e\x01\xd5\xcd\x84\x5f\x10\xdd\x0f\xe2\xfd\x82\x52\xef\x46\xff\x53\x96\xaa\x9e\x40\x6e\xb6\x91\xf2\x68\x9c\xd5\xcc\xfa\xfa\x99\x78\x9c\xc5\x97\xe1\x2d\x60\x5e\x50\x3f\x8d\x7d\xa4\x74\x9c\x3e\x4d\x72\x1c\x0e\x66\xc4\x26\x2e\xe9\x7a\xb3\xcb\x44\x9e\x23\xd1\x80\x68\xcf\x56\xba\xa1\x4c\x53\xfa\xcf\x84\xf9\x31\x1b\x17\x51\x56\xef\xde\xad\xf0\xaa\x97\xa8\x2f\xae\xe2\xa4\x9a\x95\xd4\x1f\xe9\x55\x0f\xd7\xb0\x27\x0a\xfb\x46\x85\xcf\x31\x4b\x88\x54\xf8\x79\x5d\xcc\x2f\x7d\xaa\xa4\xb2\xc2\xd2\x15\x3f\x9f\xd6\xa8\xf3\xb7\xbf\xbd\xde\x2a\xcc\xaf\x03\x83\xac\x1d\x4f\x8d\x72\x68\xe3\x67\x72\xb1\x12\xd5\x24\x91\x2d\x6c\x14\xc0\x79\x9d\x7f\x58\x54\xcd\xee\x7a\x06\x97\x28\xc4\xf2\x74\x44\x39\x30\xe1\x33\x0f\x55\x45\x36\x99\x58\x62\xe1\x9c\x42\x28\xf4\x93\x48\xc0\xa3\xca\xa3\x7e\xa6\x83\xbc\x71\x63\x21\x1c\x68\x18\x5b\x18\xc5\x25\x21\x0b\xd0\xf4\x64\xc0\xb2\xf6\xd2\x6f\xdf\x9e\xe5\x14\x5b\xb3\x19\x4c\x17\xf3\xa5\xeb\x58\x2f\x73\xb7\xd5\x9e\xa2\x1d\x59\x6f\xff\x81\xe7\x85\x43\x5e\x7e\x9f\xc3\x1f\xe4\x6f\x18\x15\xc4\x80\x43\x9e\x89\x43\xe6\x53\xb2\x6c\x34\x5a\xde\xb2\x98\x83\x51\xca\xd4\x5a\x4e\xad\x19\xf9\xd2\xb9\xff\x6f\x15\x57\xf3\xd6\xdb\xc2\x3b\x6f\xfb\x5a\x94\xd7\xea\x58\x25\x41\x14\x2d\x7d\xea\x35\x2b\x67\x2c\x7e\x7f\x30\xb1\x2b\x12\x49\xfb\x76\xbd\x83\x0e\xf2\x94\x59\x27\x28\xfb\x72\x86\xa0\xf4\xdb\x28\xfe\x76\x87\x83\xee\x73\xc0\x9f\x8b\xfb\x7a\x71\x6b\x0a\xe1\xea\xee\x8f\x89\x26\x11\xe2\xcb\xb6\xd6\xb5\x16\x39\xe6\x29\xd1\x1d\x55\x4a\x7a\x2c\xd1\x26\x3f\xed\x7e\x33\xa9\x9e\xe6\xb2\x26\x29\xde\xef\x80\xab\xdd\x64\x8d\x99\xea\x82\xd6\xf7\xd8\x6c\x69\xe6\xed\x6b\xa4\x81\x35\x71\x77\xf2\xa4\xae\x3e\x5b\xd9\xfe\xc0\xdf\xd3\xd6\xbf\xd4\xd9\x7f\xc8\x05\xfe\x6c\x9e\xe2\x37\x47\x1c\x4e\x2e\xb0\x3c\x6a\xca\x95\x8c\xd5\x92\x3c\x69\x64\x3a\xaf\x48\xc6\x2a\x58\x79\xdc\xb3\xd2\xa8\x62\x83\x1e\x8d\x54\xc1\xa4\x2f\x51\x25\x83\x0b\x8f\x86\x08\x74\x23\xa3\xb4\xd1\xea\x34\xae\xe8\x4c\xdf\xe5\x32\x51\xf9\x7e\x9f\x62\x51\xe5\x30\x9f\xbd\xcd\xe4\x9b\xe8\x51\xf8\x93\x11\x4c\x19\x76\xe7\xd2\x7f\x43\x75\x6e\x76\xde\xa1\x3e\x27\x6c\xb4\x3e\xe4\x6e\x31\x97\x13\x6c\x8f\x02\xd5\x2b\xc6\xb6\x3e\xaf\x17\x97\x66\xf7\xdd\xca\xcb\x47\xb2\x7c\x26\x17\x7d\x16\xd9\x1d\x5d\xdf\x23\xce\x9a\x76\xc7\x63\x70\xf0\x88\xa1\xce\x66\xc3\xea\xde\x33\xef\x38\x71\x98\x51\x2b\x3c\x3c\x74\x09\xf0\x13\xed\x16\x4f\xaf\x8a\xd9\xff\x03\x00\x00\xff\xff\xd8\x2f\x3b\xf3\x66\x18\x00\x00")
func migrationsSqlMysql7SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql7Sql,
"migrations/sql/mysql/7.sql",
)
}
func migrationsSqlMysql7Sql() (*asset, error) {
bytes, err := migrationsSqlMysql7SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/7.sql", size: 6246, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlMysql8Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd5\x55\xd0\xce\xcd\x4c\x2f\x4a\x2c\x49\x55\x08\x2d\xe0\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\xa8\x4c\x29\x4a\x8c\xcf\x4f\x2c\x2d\xc9\x30\x8a\x07\x91\xa9\x79\x25\x99\xc9\x89\x25\x99\xf9\x79\xf1\x45\xa9\x85\xa5\xa9\xc5\x25\xf1\x19\x89\x79\x29\x39\xa9\x29\x0a\x8e\x2e\x2e\x0a\xc9\xf9\x79\x25\xa9\x15\x25\x0a\x21\xae\x11\x21\x0a\x7e\xa1\x3e\x3e\xd6\xb8\x8d\x4b\xce\xcf\x2b\x4e\xcd\x2b\x81\x99\x83\x4b\x3f\x57\x68\x80\x8b\x63\x08\x69\x4e\x09\x76\x0d\x81\x19\x65\xab\x5e\x5d\xab\x6e\x8d\xd5\x10\x74\x07\x60\xea\x22\x3b\x2c\x7c\xfd\x5d\x3c\xdd\x22\xd1\xbc\xe3\x4f\x72\x90\xe0\x37\x86\x0b\x39\xe2\x5c\xf2\xcb\xf3\xc8\x76\xae\x4b\x90\x7f\x80\x82\xb3\xbf\x4f\xa8\xaf\x1f\xcc\x32\x12\x5c\x89\x55\x37\x20\x00\x00\xff\xff\xad\xee\x99\xb2\x55\x02\x00\x00")
func migrationsSqlMysql8SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlMysql8Sql,
"migrations/sql/mysql/8.sql",
)
}
func migrationsSqlMysql8Sql() (*asset, error) {
bytes, err := migrationsSqlMysql8SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/mysql/8.sql", size: 597, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgresGitkeep = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func migrationsSqlPostgresGitkeepBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgresGitkeep,
"migrations/sql/postgres/.gitkeep",
)
}
func migrationsSqlPostgresGitkeep() (*asset, error) {
bytes, err := migrationsSqlPostgresGitkeepBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres10Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\xbd\x4e\xc3\x30\x14\x85\x77\x3f\xc5\x1d\x53\xa1\x2e\xac\x99\x8c\x7d\x8a\x22\xa2\x6b\x70\x1c\x09\x26\x2b\x22\x6e\x6b\x51\x6a\x30\x0e\x3f\x6f\x8f\x02\x08\x31\x45\xc0\xfc\x9d\x7b\x74\xcf\xb7\x5e\xd3\xc9\x7d\xdc\xe5\xa1\x04\xea\x1f\x84\xb2\x90\x0e\xd4\x73\x73\xd5\x83\x1a\xd6\xb8\xa6\xfd\xdb\x98\x07\x9f\x86\xa9\xec\x4f\xfd\x21\xed\xd2\x54\x7c\x0e\x8f\x53\x78\x2a\xfe\x39\xe4\xe8\xe3\xf8\x4a\x86\x97\x72\x54\xcd\xc1\x6d\x0c\x79\x55\x0b\xd9\x3a\x58\x72\xf2\xac\xc5\xe2\x8d\xd4\x9a\x94\xe1\xce\x59\xd9\xb0\x5b\x7c\xe3\xf6\x10\xc3\xb1\xf8\x38\xfa\xed\x1d\x6d\x8c\x45\x73\xce\x74\x81\x1b\xaa\xbe\xc9\x8a\x2c\x36\xb0\x60\x85\xee\xab\xeb\x93\x55\x33\x33\x4c\x1a\x2d\x1c\x48\xc9\x4e\x49\x8d\x5a\x88\x9f\x6a\x74\x7a\x39\x0a\x6d\xcd\xe5\x1f\x9c\xfc\x7e\xe9\x47\xf1\x3f\xa6\xd6\xe2\x3d\x00\x00\xff\xff\xbf\xfb\x6e\xff\xbf\x01\x00\x00")
func migrationsSqlPostgres10SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres10Sql,
"migrations/sql/postgres/10.sql",
)
}
func migrationsSqlPostgres10Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres10SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/10.sql", size: 447, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres12Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xce\xb1\x0e\xc2\x20\x10\x80\xe1\x9d\xa7\xb8\xdd\x74\x71\x75\xaa\x72\x46\x93\x2b\x18\x0a\x71\x24\xc4\x92\x96\xa4\x16\x45\x88\xf1\xed\x1d\x74\x60\x72\x71\xff\xf3\xe5\x6f\x1a\x58\x5d\xc3\x98\x5c\xf6\x60\x6e\xac\x25\x8d\x0a\x74\xbb\x25\x84\xe9\x35\x24\x67\xa3\x2b\x79\x5a\xdb\x39\x8e\xb1\x64\x9b\xfc\xbd\xf8\x47\x86\x4f\xb7\x93\x64\x3a\x01\x97\x39\xf8\x25\xdb\x30\x00\x57\xf2\x04\x42\x6a\x10\x86\x68\xc3\x58\xad\xf3\xf8\x5c\x18\x47\x42\x8d\xb0\x57\xb2\xfb\xe9\x9f\x0f\xa8\xb0\x82\x8f\xfd\x97\xfc\x73\xb0\x47\x5d\xfd\xbd\x03\x00\x00\xff\xff\xa5\x30\xd4\xbc\xfd\x00\x00\x00")
func migrationsSqlPostgres12SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres12Sql,
"migrations/sql/postgres/12.sql",
)
}
func migrationsSqlPostgres12Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres12SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/12.sql", size: 253, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres4Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xd0\xb1\x4a\xc6\x30\x10\xc0\xf1\x39\x7d\x8a\xdb\x3a\x48\x17\xd7\x4e\xd1\xc4\x29\xb6\x52\x12\x70\x0b\x47\x73\xb4\x01\xbd\x68\x9a\x22\xbe\xbd\x28\x0e\x45\x5a\xa8\x7c\xdf\x12\x32\xfd\xef\xee\xd7\x34\x70\xf3\x1a\xa7\x8c\x85\xc0\xbd\x55\xd2\x58\x3d\x80\x95\x77\x46\xc3\xfc\x19\x32\xfa\x84\x6b\x99\x6f\xfd\x98\x78\x21\x2e\x3e\xd3\xfb\x4a\x4b\x01\xa9\x14\xfc\xfe\x29\x78\x2c\x1e\xd7\x10\x89\x47\x02\xab\x9f\x2d\x74\xce\x18\x50\xfa\x41\x3a\x63\xa1\xae\xdb\xe3\xf0\xf7\x4b\x5c\xe2\x88\x25\x26\xbe\x7e\xff\xcf\xe2\x7e\x46\x0e\x2f\x14\x7e\x06\x4c\x19\xf9\x5c\x5e\x08\x21\xaa\xad\x95\x4a\x1f\x7c\x5e\x4b\x0d\xfd\x13\xdc\xf7\xc6\x3d\x76\xfb\x57\xfd\x1f\xe8\x92\xe4\x91\xc9\xb6\xb9\x63\xd3\x56\x5f\x01\x00\x00\xff\xff\x50\x71\xaa\x54\x2e\x02\x00\x00")
func migrationsSqlPostgres4SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres4Sql,
"migrations/sql/postgres/4.sql",
)
}
func migrationsSqlPostgres4Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres4SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/4.sql", size: 558, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres5Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x3d\x4f\xc3\x30\x10\x86\xf7\xfc\x0a\x8f\x54\xd0\x85\x35\x13\x22\x19\xba\xa4\x50\x11\x89\xcd\x72\xec\x2b\x3d\x04\x36\xf8\xce\x7c\xfc\x7b\x14\xd4\xaa\x51\x94\x0b\x8e\x98\x22\x45\xf7\xde\xf3\xe6\x89\xbd\x5e\xab\xcb\x57\x7c\x8a\x86\x41\xb5\x6f\xc5\xed\xae\xbe\x79\xa8\x55\xdb\x6c\xee\xdb\x5a\x6d\x9a\xaa\x7e\x54\x87\x6f\x17\x8d\x0e\x26\xf1\xe1\x5a\x87\x6e\x9f\xc8\x1a\x06\xa7\xfb\x17\xe0\x19\xad\x61\x0c\x5e\x13\x10\xfd\x3e\x83\x46\xf7\xa5\xb6\xcd\xc2\xa0\xba\xb0\x2f\x08\x9e\x35\xba\x2b\x45\xa9\x7b\x06\xcb\x83\xd4\xaa\x2c\x4e\xed\x26\x6a\xd9\xe0\xa9\xcf\x46\x78\x4f\x40\xac\x2d\xba\xc9\x16\xa3\xb9\x01\x73\x55\x2e\x58\x4f\xa9\xcb\x5b\x7f\xfc\x8e\xf3\x72\xd9\xec\x98\xf1\x01\x11\xf3\x20\xfd\xe4\x1e\x21\xce\x2b\x1a\x59\xff\xcb\xd4\xf4\x78\xae\x30\x01\x26\x79\x93\x60\x0b\xf4\x09\x44\xd1\xa2\x84\x1c\xca\x1c\x5e\x8e\x2a\x7c\xfa\xa2\xda\x6d\xef\xfe\x73\x2b\xca\x42\x5c\x21\x9c\xe0\x32\x3b\x70\x74\x9b\x1f\x38\xa9\x99\x29\x35\x7f\x66\x64\xd4\xfc\xef\x5f\x9c\x3b\x37\xfd\x09\x00\x00\xff\xff\xa9\xd8\x35\xfe\xaf\x04\x00\x00")
func migrationsSqlPostgres5SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres5Sql,
"migrations/sql/postgres/5.sql",
)
}
func migrationsSqlPostgres5Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres5SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/5.sql", size: 1199, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres6Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd5\x55\xd0\xce\xcd\x4c\x2f\x4a\x2c\x49\x55\x08\x2d\xe0\x72\xf4\x09\x71\x0d\x52\x08\x71\x74\xf2\x71\x55\xc8\xa8\x4c\x29\x4a\x8c\xcf\x4f\x2c\x2d\xc9\x30\x8a\x4f\xce\xcf\x2b\x4e\xcd\x2b\x89\x2f\x4a\x2d\x2c\x4d\x2d\x2e\x51\x70\x74\x71\x51\x48\x4c\x2e\x52\x08\x71\x8d\x08\x51\xf0\x0b\xf5\xf1\x51\x70\x71\x75\x73\x0c\xf5\x09\x51\x50\x57\xb7\xe6\xe2\x42\x36\xd6\x25\xbf\x3c\x8f\x78\x83\x5d\x82\xfc\x03\x14\x9c\xfd\x7d\x42\x7d\xfd\x40\x16\x58\x73\x01\x02\x00\x00\xff\xff\x9e\x91\x43\x31\xa2\x00\x00\x00")
func migrationsSqlPostgres6SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres6Sql,
"migrations/sql/postgres/6.sql",
)
}
func migrationsSqlPostgres6Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres6SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/6.sql", size: 162, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres7Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xcd\x8f\xe2\x36\x14\xbf\x23\xf1\x3f\x3c\xa9\x87\x61\xd4\x61\xda\xdd\x5b\xbb\xea\x81\x05\x4f\x77\x54\x16\x56\x21\xa8\xed\x09\x99\xe4\x41\xac\x1a\x9b\xc6\x0e\xd3\xf9\xef\xab\x38\xce\x07\x09\x84\x24\x30\xb3\x97\x1c\x62\xfb\x7d\xfc\xfc\x7b\x1f\x7e\xc3\x21\xfc\xb8\x63\xdb\x90\x6a\x84\xe5\xbe\xdf\xeb\xf7\x86\x43\x70\x03\xa6\xc0\xa3\x02\xd6\x08\x22\xe2\x1c\x5e\x02\x14\x20\x24\xec\x43\x3c\x30\x19\x29\xe0\x72\xcb\x04\x28\x54\x8a\x49\x01\xf8\x1f\x53\x5a\x3d\x80\x92\xc0\x51\xdf\x29\x08\x71\x27\x0f\x08\x3e\x6e\x68\xc4\x75\xbf\x37\x9a\xba\xc4\x01\x77\xf4\x79\x4a\x20\x78\xf5\x43\xba\x92\x34\xd2\xc1\xc7\x55\xfc\x45\xa1\x99\x47\x35\x93\x62\x15\xe2\xbf\x11\x2a\x0d\xc9\xfe\xf1\x7c\xba\xfc\x3a\x4b\x74\xad\xac\xae\x15\xf3\x61\xe2\xcc\xbf\xc1\x84\x3c\x8d\x96\x53\xf7\xd3\x55\x26\x83\x0c\x81\x6d\x40\x07\x54\x67\x2b\x01\x55\xb0\x46\x14\xd6\x09\xbf\x8b\x5b\x9e\x14\x0a\x85\xbe\xb9\x3f\x3a\x40\x7b\xdc\x0b\x28\xe7\x28\xb6\x08\x2f\x54\x81\x8f\x1c\x35\xfa\x30\x50\x81\x8c\xb8\x0f\x42\x6a\xfb\xcf\x1c\xb1\xe6\x00\xd3\x0a\xf9\xe6\xfe\x3a\xc3\x73\xcd\xa7\xec\x1e\x5b\x55\x56\x80\x4a\xb0\xdd\x4b\x26\x34\x68\x09\x54\x00\xee\xf6\xfa\xd5\x00\x2f\x0e\x94\x33\xdf\x5e\x4c\xaa\xd1\x7a\xa0\x50\xc7\xa6\xb3\xb0\xa2\x55\x4b\x98\x2d\xa7\xd3\x7e\x6f\xf9\x6d\x32\x72\x2f\xd8\xbf\x20\x6e\x45\xc0\x6f\xe6\x3c\xfc\xf9\x85\x38\x04\x66\x73\x17\xc8\x5f\xcf\x0b\x77\x01\x83\x7e\x0f\x60\x41\xa6\x64\xec\xc2\x07\x78\x72\xe6\x5f\x1b\x71\x35\x91\x53\x67\xc5\x63\xd5\x82\x06\x82\x1f\xb3\xfd\xfd\xde\xfd\xd5\xf0\xa6\xec\x3e\x03\x6f\x81\x8d\x1d\xf1\x2d\x48\xb8\x11\xc0\xa9\xc9\x8d\x01\x3e\x32\xa1\x81\xe4\x47\xe6\x17\xa0\x9d\x16\x69\x58\x01\xb6\x04\xa3\x59\x15\x12\xb8\x14\x5b\x0c\xd3\x6c\x32\x90\xa1\x09\x47\x81\x07\x0c\x0d\xc6\x2c\x89\xd9\x0d\x0b\x95\x86\x3d\xa7\x1e\xde\x1f\x5f\x01\xd5\xf5\x80\x9f\x21\xdd\x77\xc2\xfd\x0c\x53\x6f\x06\xff\x43\x9a\xaa\x1e\x40\xae\x37\x91\xf2\x68\x9c\xd5\xec\xfe\xea\x9d\x78\x9c\xc5\xc1\xf0\x12\x30\x2f\xa8\xde\xc6\x2e\x52\x3a\x4e\x9f\x36\x39\xf6\x7b\x13\x32\x25\x2e\x69\x1b\xd9\x45\x20\x4f\x81\x68\x8d\x68\x8e\x56\x72\xa0\x08\x53\xf2\xe7\x91\xf9\x31\x1a\x67\xad\x2c\xc7\xde\xb5\xe6\x95\x83\xa8\xab\x5d\xf9\x4d\xd5\x33\xa9\xbb\xa5\x17\x35\x5c\xb2\xdd\x30\xec\x0b\x15\x3e\xc7\x34\x21\x52\xe1\x67\x75\x31\x0b\xfa\x84\x49\x45\x86\x25\x3b\x7e\x3a\xae\x51\xa7\xa3\xbf\x39\xdf\x4a\xc8\xaf\x02\x6b\x59\x33\x9c\x6a\xe9\xd0\x44\xcf\xe3\xd9\x4a\x54\xa1\x44\xba\xb1\x96\x00\xa7\x79\xfe\x66\x5e\xd5\xab\xeb\xe8\x9c\x61\xc8\xc8\xd3\x11\xe5\xc0\x84\xcf\x3c\x54\xc7\x9d\x58\xa4\xd0\x87\x1f\x3e\x7c\xfc\xf9\x97\x5f\xcd\xef\x38\x03\xa7\x19\x2f\xc4\x3d\xcf\xcc\x91\x3c\xd6\x6c\x7f\x95\xb9\x97\x32\x2e\x66\xdf\xb1\x1f\x39\x09\x0d\x8f\x3c\xaa\x3c\xea\xa7\x64\xca\xba\x3f\x16\xc2\x9e\x86\xb1\x84\x41\x5c\x57\x52\x94\x6c\x63\x07\x2c\xed\x51\xfd\xe6\x3d\x5e\x76\x4f\xa3\xc9\x04\xc6\xf3\xd9\xc2\x75\x46\xcf\x33\xb7\xd1\x99\xbc\xa7\x59\x6d\xfe\x81\xa7\xb9\x43\x9e\x7f\x9f\xc1\x1f\xe4\x6f\x18\xe4\xe8\x82\x43\x9e\x88\x43\x66\x63\xb2\xa8\x15\x5a\x3c\x32\x9f\x81\xa5\xdb\x78\xb4\x18\x8f\x26\xe4\x53\xeb\x47\x44\x23\xbf\xea\x8f\x5e\xe7\xde\x69\xd9\x97\xbc\xbc\x54\x0c\x4b\x59\x26\x7f\x17\x24\x5a\xd3\x9a\xc8\xe2\x47\x0c\x13\xdb\x3c\x1b\x35\xef\xf9\x5b\xf0\x20\xcb\xbb\x55\x80\xd2\x95\x13\x00\x25\x6b\x83\x78\xed\x06\x17\xdd\xe5\x82\xdf\xd7\xee\xcb\x15\xb2\xce\x85\x8b\xa7\xdf\xc6\x1b\x43\xc4\xe7\x4d\xa5\xf5\xcd\x73\xcc\x83\xe1\x1d\x55\x4a\x7a\xcc\x70\x93\x1f\xb7\xd0\x29\x55\x8f\x73\x59\x1d\x15\x6f\x77\xc1\xe5\x96\xb4\x82\x4c\x79\x43\xe3\x38\xb6\x47\xea\x71\xfb\x1c\x69\x60\x75\xd8\x1d\xbd\xcb\xcb\x6f\x5f\xb6\xdb\xf3\xd7\xe4\xfd\x50\x78\x1e\xbc\x49\x00\xbf\x37\x4e\x71\xd9\x8c\xdd\xc9\x08\x96\x79\x4d\xb9\x92\x31\x5b\xcc\xbb\x48\x26\x43\x0f\x33\x9b\xc1\xd2\x84\x80\x15\xe6\x1d\x6b\x34\x95\x39\x43\xd2\x97\xa8\xcc\xf4\xc3\xa3\x21\x02\x5d\xcb\x28\xe9\xd6\x5a\xcd\x3c\x5a\xc3\x77\xbe\x4c\x94\xd6\x6f\x53\x2c\xca\x18\x76\xeb\x50\x4a\x83\x9b\x6c\x0a\x38\x91\x2f\xa2\x43\xf7\x60\x86\x41\xd7\xb4\x0f\x57\x54\xf8\x5a\xdd\x2d\x4a\xbc\xc1\xa2\x31\x4f\x5a\x79\x5c\x4c\xd1\x1d\x4a\x5c\x17\x0f\x9b\xaa\xbc\x5c\x9d\x6a\xb5\xb7\x2b\x4f\x6f\x08\xf1\x89\x54\xf6\x4e\x48\xb7\xd4\x7c\x03\x2f\x2b\xac\x1d\x0e\xc1\xc1\x03\x86\x3a\x9d\x4e\xab\x5b\x4f\xdd\xe3\x74\x62\x73\x06\xdc\xdd\xb5\xf1\xef\x1d\xe5\xe6\x8f\xbf\x92\xd8\xff\x03\x00\x00\xff\xff\x76\x42\xfd\x72\xe8\x18\x00\x00")
func migrationsSqlPostgres7SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres7Sql,
"migrations/sql/postgres/7.sql",
)
}
func migrationsSqlPostgres7Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres7SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/7.sql", size: 6376, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlPostgres8Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8f\xb1\xca\xc2\x30\x14\x85\xf7\x3e\xc5\xdd\x3a\xfc\x74\xf9\x57\xa7\x68\xe2\x14\x5b\x29\x37\xe0\x16\x42\x7b\xb1\x05\xbd\xd1\xf4\x16\x15\xf1\xdd\xc5\xa1\xe0\xa0\xa0\x2e\x67\x3b\xdf\x39\x5f\x51\xc0\xdf\xbe\xdf\xa6\x20\x04\xee\x90\x29\x8b\xa6\x06\x54\x73\x6b\xa0\xbb\xb4\x29\xf8\x18\x46\xe9\xfe\xfd\x23\x89\xa5\x6f\x82\xf4\x91\x7d\xa2\xe3\x48\x83\xf8\x2e\x70\xbb\xa3\x16\x94\xd6\xd0\x44\x16\x3a\x0b\xa0\xd9\x20\x94\x15\x42\xe9\xac\x05\x6d\x96\xca\x59\x84\xfc\x7a\xcb\x67\xef\xf9\x4d\xe4\x81\x58\x26\xf0\xc7\xc0\xec\x59\x40\xc7\x13\xff\xac\xa0\xeb\x6a\x0d\x8b\xca\xba\x55\x39\x2d\x7f\xf1\xf7\x65\xfb\x1e\x00\x00\xff\xff\xd0\x54\x7b\xf3\x5d\x01\x00\x00")
func migrationsSqlPostgres8SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlPostgres8Sql,
"migrations/sql/postgres/8.sql",
)
}
func migrationsSqlPostgres8Sql() (*asset, error) {
bytes, err := migrationsSqlPostgres8SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/postgres/8.sql", size: 349, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlSharedGitkeep = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func migrationsSqlSharedGitkeepBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlSharedGitkeep,
"migrations/sql/shared/.gitkeep",
)
}
func migrationsSqlSharedGitkeep() (*asset, error) {
bytes, err := migrationsSqlSharedGitkeepBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/shared/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlShared1Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x95\x41\x8f\xda\x30\x10\x85\xcf\xce\xaf\x98\x23\xa8\xac\x54\xad\xba\xa7\x3d\xd1\x42\xa5\xaa\x14\x56\x08\x54\xed\xc9\x32\xf6\x40\xdc\x4d\x6c\x6a\x3b\x4b\xfb\xef\xab\x84\x04\x88\x93\x98\x2c\x5d\xae\xbc\x19\xcf\xbc\xef\xd9\xb9\xbb\x83\x0f\xa9\xdc\x19\xe6\x10\xd6\xfb\xe8\xcb\x72\x3a\x5e\x4d\x61\x35\xfe\x3c\x9b\x42\xfc\x57\x18\x46\x35\xcb\x5c\x7c\x4f\xb9\x56\x16\x95\xa3\x06\x7f\x67\x68\x1d\x0c\x22\xc2\x63\x96\x24\xa8\x76\x08\x40\x08\x01\x78\x65\x86\xc7\xcc\x0c\x3e\x7d\x1c\xc2\x7c\xb1\x82\xf9\x7a\x36\x83\xa7\xe5\xb7\x1f\xe3\xe5\x33\x7c\x9f\x3e\x8f\x22\xf2\x8a\x46\x6e\x25\x1a\x38\xfd\xda\x8a\x46\x11\xe1\x89\xcc\x4f\x93\xa2\xe8\x7c\x96\xdd\x3f\x3c\xd4\x74\x36\xdb\xfc\x42\xee\xc8\x15\x59\x39\x35\xcd\x4c\x52\x28\x1d\xfe\x71\xb5\x36\x2f\x72\x5f\xf5\x00\xd8\x68\x9d\xb4\x54\xa3\xa0\x96\xeb\x3d\x12\xe2\x97\x73\x6b\xb6\xe7\xf2\x8e\x95\x72\x1f\x51\x39\xc9\x59\xde\x89\x39\xe2\x64\x8a\xd6\xb1\x74\xdf\x3c\x87\xb9\xdc\xd3\x0b\x41\x65\xe7\x64\xfa\x75\xbc\x9e\xad\x40\xe9\xc3\x60\x38\x8a\x88\x96\x82\xe7\x6c\xf2\x89\x1a\x8b\x45\xc3\xc7\x00\xd1\x8b\x79\xa4\x56\xff\x09\xf6\xaa\x45\x27\xf2\x1e\x29\x9f\x7b\x1f\x27\x6f\x81\x0e\xd0\x18\x29\x0c\xbd\x6f\x02\x6f\x80\x76\x3d\x09\xef\x87\xd5\xa2\xb5\x52\xab\x1c\xab\x14\xc7\x4d\x03\x04\x3c\xaa\xfe\xa0\x00\x81\xed\xe6\x8b\x9f\xc5\x76\x25\x1d\xff\x98\x9a\x6f\xe1\x15\xbc\xb7\x86\xc6\x4c\x89\x04\x45\x33\x9a\x7d\xf7\xd8\x19\xa6\x2e\xb2\x59\x94\xf9\x69\x30\x98\x62\xba\x41\x13\x7a\x06\x8e\x0a\xba\xd5\xa6\x14\x49\x55\xeb\x81\xc6\x14\x7f\x55\x1d\xda\x4e\xa9\xa7\x85\x04\x2d\xad\x02\x53\x42\xa4\x8c\x73\xb4\x96\x3a\xfd\x82\xaa\x25\xcf\xa5\x4a\x8a\x4a\xd1\xf2\xd2\x35\xb2\x57\x9f\xe0\x28\x3a\x30\x4b\x33\x8b\x02\x3a\xcc\xb8\xe5\x61\xe9\xa6\xd8\x13\xa2\x97\xab\xd0\x8d\x3c\x91\xec\x03\x32\xc4\xb1\x0b\x23\xe3\x6f\xc3\xdc\x8b\x72\x03\xcd\x15\x32\x1d\x60\xa2\xcb\x6f\xfa\x44\x1f\x54\x34\x59\x2e\x9e\x7a\xdc\xb3\xc7\x4e\x61\x3b\xd1\xde\xfa\x32\x98\xdd\xfa\x8e\x0b\xff\xd6\x81\xce\x75\xff\x02\x00\x00\xff\xff\x5a\xbe\x93\x31\xd7\x08\x00\x00")
func migrationsSqlShared1SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlShared1Sql,
"migrations/sql/shared/1.sql",
)
}
func migrationsSqlShared1Sql() (*asset, error) {
bytes, err := migrationsSqlShared1SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/shared/1.sql", size: 2263, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlShared11Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xce\xb1\x0e\x82\x30\x14\x85\xe1\xbd\x4f\x71\x76\xc3\xe2\x4a\x1c\xaa\x2d\xd3\x15\x08\xdc\xce\xa4\x68\x23\x4d\xa4\x35\xa5\xc6\xf8\xf6\x86\x85\x38\xea\x72\xb6\xf3\xe5\x2f\x0a\xec\x66\x7f\x4b\x36\x3b\x98\x87\x90\xc4\xba\x03\xcb\x23\x69\x4c\xef\x6b\xb2\x43\xb4\xcf\x3c\xed\x87\x75\x5d\xc8\xfe\x62\xb3\x8f\x61\x58\xdc\xb2\xf8\x18\x20\x95\x42\x72\xb3\x9b\x47\x97\x30\xc6\x78\x47\xdd\x30\x6a\x43\x04\xa5\x2b\x69\x88\x51\x49\xea\x75\x29\x84\x69\x95\xe4\xdf\xd4\x5e\xf3\xa6\x1e\xb8\x33\xeb\xfd\x3b\x54\xc5\x57\xf8\x3b\x55\x75\x4d\x8b\x53\x43\xe6\x5c\x6f\x78\x29\x3e\x01\x00\x00\xff\xff\x42\x17\xa1\x0d\x00\x01\x00\x00")
func migrationsSqlShared11SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlShared11Sql,
"migrations/sql/shared/11.sql",
)
}
func migrationsSqlShared11Sql() (*asset, error) {
bytes, err := migrationsSqlShared11SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/shared/11.sql", size: 256, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlShared2Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xd1\x41\x4f\xf3\x20\x18\x07\xf0\x33\x7c\x8a\xe7\xb6\x2d\xef\x76\x59\xb2\x53\x4f\xbc\x2d\x46\x23\x5b\x17\xd2\x9a\xec\x44\x18\x50\x8b\x99\xa0\x40\x35\x7e\x7b\xd3\xa5\x73\xc6\xd8\x64\x99\x3d\xf4\xf4\xe7\xf9\xc1\xf3\x5f\x2c\xe0\xdf\xb3\x7d\x0c\x32\x19\xa8\x5f\x30\x61\x15\xe5\x50\x91\xff\x8c\x42\xfb\xa1\x83\x14\x5e\x76\xa9\x5d\x0a\xe5\x5d\x34\x2e\x89\x60\x5e\x3b\x13\x13\x90\xa2\x80\xc6\x07\x65\xb4\x88\xdd\xfe\xc9\xa8\x24\xac\x36\x2e\xd9\xc6\x9a\x00\x0f\x84\xe7\xb7\x84\x4f\x97\xab\xd5\x0c\x36\x35\x63\x50\xd0\x1b\x52\xb3\x0a\x26\x93\x6c\x1c\xe9\xff\xfd\x0c\x25\x93\xf5\xee\x64\x89\x56\x3a\x7d\x30\xfa\x4f\x66\xce\x29\xa9\xe8\x6f\xa8\xdf\x37\x5d\x54\x32\x19\xfd\xd3\x8f\x26\x46\xeb\x1d\x4c\x31\x1a\x3c\x00\x84\x10\x0c\xdf\x9b\x0c\xaa\x95\x61\x00\xcb\xea\x88\xce\x31\x52\x07\xdb\x6f\xca\xea\x73\x78\x2c\x7a\x7a\xc6\xf9\x0e\x68\x3c\xbc\xe5\x77\x6b\xc2\x77\x70\x4f\x77\xd3\xe1\xe0\x1c\xbe\xb0\x19\x9e\x65\x18\x7f\xaf\xb3\xf0\xef\xee\xf2\x42\x0b\x5e\x6e\x21\x2f\x59\xbd\xde\x8c\x2f\xf9\xfa\xee\x2e\x1c\x7f\x8c\x5d\x53\x52\x86\x3f\x03\x00\x00\xff\xff\x48\xef\x86\x01\xca\x02\x00\x00")
func migrationsSqlShared2SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlShared2Sql,
"migrations/sql/shared/2.sql",
)
}
func migrationsSqlShared2Sql() (*asset, error) {
bytes, err := migrationsSqlShared2SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/shared/2.sql", size: 714, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlShared3Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\x31\xeb\xc2\x30\x10\x47\xf7\x7e\x8a\xdb\xfa\xff\x23\x05\x11\x37\xa7\xd8\x54\x1c\x62\x2b\xa1\x71\x0d\xa1\x3d\xda\x40\xbd\x68\x93\x22\x7e\x7b\xe9\x22\x42\x41\x6c\x97\x1b\xdf\xbd\xdf\x4b\x12\x58\x5d\x6d\xd3\x9b\x80\xa0\x6e\x11\x13\x65\x26\xa1\x64\x7b\x91\x41\xfb\xac\x7b\xa3\x9d\x19\x42\xbb\xd1\x95\x23\x8f\x14\x74\x8f\xf7\x01\x7d\x00\xc6\x39\x74\xae\xb1\xa4\x3d\x7a\x6f\x1d\x69\x5b\xc3\x85\xc9\xf4\xc8\xe4\xdf\x76\xfd\x0f\xb9\x12\x02\x78\x76\x60\x4a\x94\x10\xc7\xbb\x25\xe8\xaa\x35\x5d\x87\xd4\xe0\x42\xf2\x78\x91\x82\xad\x4c\x18\x0d\x97\xbb\x47\x9f\x99\xb8\x7b\xd0\xef\x6b\xb8\x2c\xce\x90\x16\x42\x9d\xf2\xc9\xd3\x19\x51\xa6\x98\x77\x9c\xf9\x01\xbe\x3b\xbd\x02\x00\x00\xff\xff\xd1\x35\x88\xf5\x13\x02\x00\x00")
func migrationsSqlShared3SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlShared3Sql,
"migrations/sql/shared/3.sql",
)
}
func migrationsSqlShared3Sql() (*asset, error) {
bytes, err := migrationsSqlShared3SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/shared/3.sql", size: 531, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlShared9Sql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xb1\x6e\xc2\x30\x10\x86\x67\xfb\x29\x6e\x04\x15\x16\x2a\xba\x30\xd1\x92\xa1\x2a\x05\x14\x85\x81\xc9\x32\xce\x25\x71\xe5\xc6\xe9\xe5\x0c\xed\xdb\x57\x41\x91\x08\x51\x0b\xe2\xe6\xef\xfb\x4f\x77\xfa\xc7\x63\x78\xf8\xb4\x39\x69\x46\xd8\x56\xf2\x25\x8e\xe6\x49\x04\xc9\xfc\x79\x19\x41\xf1\x93\x92\x56\x5e\x07\x2e\x26\xca\xf9\xdc\x07\x56\x84\x5f\x01\x6b\x86\x81\x14\xa6\xd0\xce\x61\x99\x23\x80\x10\x02\xda\x39\x68\x32\x85\xa6\xc1\xe3\xd3\x10\x56\xeb\x04\x56\xdb\xe5\x12\x36\xf1\xeb\xfb\x3c\xde\xc1\x5b\xb4\x1b\x49\x71\x40\xb2\x99\x45\xba\xe9\x8d\xa4\xa8\xc3\xfe\x03\x0d\x8b\x0e\x79\x66\x27\xd3\xe9\x25\x6c\x53\x38\x85\xfe\xc1\xf6\x72\x8d\xb3\x58\xb2\x3a\x09\xdd\xf9\x2f\xba\xbd\x5b\x05\x72\x4d\x7a\xbb\x80\xf1\x9b\x2f\xa9\xd4\x52\xc3\xc0\x15\xe8\xa8\x6b\x15\x6a\xec\x6f\x86\xbd\xf7\xee\xfc\xb2\x14\x33\x1d\x1c\x43\xa6\x5d\x8d\x23\x09\xa0\x8d\xc1\x8a\xef\xd6\x08\x9b\xff\xdd\xa9\x09\xaa\x94\x2d\x2d\x5b\xdd\x33\xaf\x58\x72\x38\x93\xb2\x5b\xa7\x85\x3f\x96\x72\x11\xaf\x37\xb7\xeb\x34\x93\xbf\x01\x00\x00\xff\xff\x21\x88\x10\xe8\x88\x02\x00\x00")
func migrationsSqlShared9SqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlShared9Sql,
"migrations/sql/shared/9.sql",
)
}
func migrationsSqlShared9Sql() (*asset, error) {
bytes, err := migrationsSqlShared9SqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/shared/9.sql", size: 648, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTestsGitkeep = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func migrationsSqlTestsGitkeepBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTestsGitkeep,
"migrations/sql/tests/.gitkeep",
)
}
func migrationsSqlTestsGitkeep() (*asset, error) {
bytes, err := migrationsSqlTestsGitkeepBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests10_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\x1b\x37\x10\x3d\x47\xbf\x82\xd0\x45\x0e\x4a\x45\xb6\x8a\xe4\xe0\x9e\x0a\x34\x87\x00\x85\x03\x34\x49\x7b\x28\x0a\x82\x4b\xce\xae\x18\xad\x38\x5b\x0e\xb7\xb2\x1a\xf9\xbf\x17\x24\xf7\x83\x92\xb7\xb2\x7d\x6a\x2f\x36\x39\xc3\xe1\xce\xbc\x37\xf3\x76\xb5\x5c\xb2\xef\x76\xa6\x72\xd2\x03\xfb\xd2\xcc\x3e\xdc\x7d\x7a\xff\xcb\x67\xf6\xe1\xee\xf3\x47\xb6\x39\x68\x27\x85\xaa\x0d\x58\xcf\xae\x8c\xe6\x4c\xd6\x35\xee\x41\x0b\x85\x8e\x04\x3a\x53\x19\x4b\x9c\xa5\x13\xc2\xca\x1d\x0c\x1b\x02\xe5\xc0\x73\xe6\x40\x1b\x07\xca\x8b\xd6\x19\xe2\xac\x72\xd2\x7a\xe1\x0f\x0d\x50\xf0\x51\x83\x96\xa0\xdf\x93\xc2\x06\x38\xc3\xbd\x05\xc7\x59\x83\xb5\x51\x87\x10\xc7\x99\x47\x4a\x8b\xee\xf6\xb8\xae\xb1\xc2\xce\x8a\xd6\x4b\xe5\xe9\xec\xe9\x02\xee\x1b\xe3\x80\x84\xf4\x9c\x11\x28\x8f\x4e\x18\x0d\xd6\x9b\xd2\x80\x4b\xa1\x5f\xf7\x5b\x4a\x7f\xfb\x27\x6d\xc1\x0a\xb0\xba\x41\x63\xbd\x90\xad\xdf\x88\x1d\xf8\x0d\xea\x90\xef\x9f\x2d\x50\x5f\x4a\xbf\xc3\xe2\x6b\xa8\x8f\x4c\x65\x8d\xad\x84\xac\x2b\xce\x5a\x02\x67\x6c\x89\xd1\x0a\x5a\x0c\x95\x46\x2f\xb5\x29\x24\x94\xcd\x99\x6c\xb5\x01\xab\x80\xb3\xd2\xa1\xf5\x6a\x23\xad\x85\x5a\x84\xea\xda\xae\xd2\x29\x07\x01\x91\x41\x2b\x42\x1a\xc6\x81\x0e\x80\x91\xef\xbd\x67\xb0\x17\x52\x6d\xa7\x2e\x9e\xb0\x9f\xdf\xfb\x7a\xf6\xeb\x8f\x3f\x7f\x79\xff\x69\xc6\xd8\xd5\xe2\xe6\x7a\x99\x10\x5e\x70\xb6\xd8\x78\xdf\xdc\xae\x56\x35\x2a\x59\x6f\x90\xfc\xb1\x33\x54\x88\x55\x0d\xe1\x04\xe1\x0e\xb2\x00\x59\x28\x0d\xe5\xf3\x42\x03\xf0\xe8\xcc\xdf\x20\x14\x6a\x38\x9a\x5d\x53\x1b\x65\xe2\x35\x91\xa2\xa3\xd1\x22\x2e\x82\xa5\x44\x3c\x16\xd2\xc5\x38\xb0\x20\x29\x7b\x46\x6a\xa3\xcc\xe0\x31\x77\x4f\x94\x53\xe1\x78\xd1\xb1\xc4\xb0\xbb\x1e\xfd\xa9\x8f\xc2\x89\x6f\xf3\x2d\x1c\x68\x7e\xcb\x7e\xff\xe3\x21\xbb\x20\xf4\x52\xd8\x5a\xb4\x90\x99\x5b\x67\x6e\x8e\xe3\x7a\x1d\x5c\x8e\xd6\x6f\xdf\xa5\xc5\xdb\x75\x5c\x34\x6d\x51\x1b\xd5\x87\xd1\xed\x6a\xb5\xdf\xef\xdf\xa0\x3b\xbc\xa1\xcd\x4a\x36\x26\xbb\xb0\x54\xcb\x44\xd9\x6a\xc1\x99\x77\x2d\x8c\xae\xc8\xfe\xcd\xea\x98\x6f\xd7\xab\x2c\xb6\x38\x8f\x7d\xfd\xc3\x2c\x1f\xfd\xd9\xab\x34\xfb\x18\x68\x58\xc7\x29\x08\x63\xa3\xa4\x0f\xad\xd1\xb5\x48\x27\x09\xa3\x0f\x74\x9a\xb4\xd4\xde\x43\xe3\xbc\x8a\x7d\x53\x63\x65\xec\xb2\x0b\x5d\x1a\xbd\xe0\xec\xee\xe3\x6f\x57\xaf\x39\x0b\x5e\x6a\x8b\xc5\x8b\x72\xe8\xa6\x8f\x5d\xa9\x8d\xac\x6b\xb0\x15\x70\xf6\x17\xb8\x38\xd9\x83\x0c\x84\xfc\xba\x6c\xf2\xe9\xad\x39\xa3\xad\x69\x06\x13\x68\xd1\x49\x8f\x22\x57\x4e\x95\x34\x1e\x0c\x3b\x34\x5a\x89\xa0\x39\x70\xef\xa3\x0c\x99\x01\x93\xf8\xc8\xfc\xb4\xe8\xc7\xfb\x0c\x8e\x21\xed\x45\x02\xa0\xcf\xbd\xdb\x8e\x6d\x99\xc0\x09\x25\x74\xbb\x7e\xb4\x17\x9c\x95\xb2\x26\xe8\xce\x84\x02\xfa\x60\x72\xe5\x08\x6f\x8f\xf2\xb7\x87\xce\x3d\xc1\x44\x30\xcb\x56\x3f\x41\x81\x0a\x12\x66\xfd\xff\x08\xfb\x12\x9d\x0a\x37\x74\x82\x3a\x8a\xfb\x14\x2d\xc9\x92\xe5\x3c\xc9\x13\x67\x52\xb9\xf4\x4a\x81\xfb\xf3\x26\xfe\x0f\x59\x4b\xa5\xc6\x41\xb9\x48\xe3\x79\x8a\x81\xd6\x6e\xa5\x3a\xd9\x2a\x11\xe7\xb7\xf3\x42\xba\xf9\xc3\xcb\x18\x17\x1b\x69\x75\x0d\xfa\x84\xf9\xf8\x4a\x1f\x69\x74\xb0\x83\x5d\x11\x18\xe8\x57\xa2\x44\xc7\x19\x38\x87\xee\x9c\xcd\x9e\x1e\xa9\x14\x10\x25\x41\x1f\xad\xbd\xc4\x4f\x75\xc5\x5e\x92\x68\x29\xbc\xf6\xfa\xe7\x3f\x7f\xd6\x7a\xd4\x93\x68\x7e\xff\xee\xfa\xba\x07\xfa\x14\xf5\xdc\x94\x91\xf6\xf4\xa0\x4c\x6b\xd5\x24\x7a\xd9\x88\x5c\xc4\x2d\x36\xe5\x29\x78\x97\x40\xb9\x30\x18\xcf\xeb\xec\xd4\x67\x8f\x11\x5a\xdc\x3c\xea\xd1\x0c\x9a\xd3\x26\x7d\x49\xa7\x61\x51\xb6\xd4\x55\xf2\x2f\x6f\x9b\x01\xaa\xc7\x0a\x93\x85\x9f\xd5\x35\xce\xcb\xc9\x70\x8e\xe7\x9f\xc8\x6b\xf8\x9e\xba\x24\x79\x43\x66\x14\x72\xca\xd2\x3b\xd1\xbd\x28\x01\x69\x39\x12\x15\x3a\xbf\xf1\x10\xcf\x86\x3b\xe2\xaa\x11\xc6\x1a\x6f\x26\xca\x79\x42\x80\x4e\x35\xe7\xb1\x36\x9c\x7c\xec\x50\xfc\x34\x88\x09\x2e\x5b\x57\xaf\x4e\xed\x49\xae\x82\x63\x94\xac\x89\x7f\x01\xbd\xfc\x27\xc4\x4f\xb8\xb7\xb3\x7f\x02\x00\x00\xff\xff\xb6\xdf\x28\x14\x54\x0c\x00\x00")
func migrationsSqlTests10_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests10_testSql,
"migrations/sql/tests/10_test.sql",
)
}
func migrationsSqlTests10_testSql() (*asset, error) {
bytes, err := migrationsSqlTests10_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/10_test.sql", size: 3156, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests11_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5f\x6f\x1b\x37\x0c\x7f\xae\x3f\x85\xe0\x17\x27\x98\x5c\xc7\x1e\xda\x87\xec\x69\xc0\xfa\x50\x60\x48\x81\xb5\xdd\x1e\x86\x41\xd0\x49\xbc\xb3\xea\xb3\x78\x13\x75\x73\xbc\x3a\xdf\x7d\x90\x74\x7f\x9d\xab\x93\xee\x29\x2f\x09\x45\x8a\x3c\xf2\x47\xf2\x77\xe7\xe5\x92\xfd\xb0\x37\x85\x93\x1e\xd8\xe7\x6a\xf6\xfe\xee\xe3\xbb\xdf\x3e\xb1\xf7\x77\x9f\x3e\xb0\xed\x51\x3b\x29\x54\x69\xc0\x7a\x76\x65\x34\x67\xb2\x2c\xf1\x00\x5a\x28\x74\x24\xd0\x99\xc2\x58\xe2\x2c\xdd\x10\x56\xee\xa1\x3b\x10\x28\x07\x9e\x33\x07\xda\x38\x50\x5e\xd4\xce\x10\x67\x85\x93\xd6\x0b\x7f\xac\x80\x82\x8d\x2a\xb4\x04\xed\x99\x14\x56\xc0\x19\x1e\x2c\x38\xce\x2a\x2c\x8d\x3a\x06\x3f\xce\x3c\x52\x12\x9a\xe8\x51\x2e\xb1\xc0\x46\x8b\xd6\x4b\xe5\xe9\xec\xe9\x02\xee\x2b\xe3\x80\x84\xf4\x9c\x11\x28\x8f\x4e\x18\x0d\xd6\x9b\xdc\x80\x4b\xae\x5f\x0e\x3b\x4a\x7f\xdb\x27\xed\xc0\x0a\xb0\xba\x42\x63\xbd\x90\xb5\xdf\x8a\x3d\xf8\x2d\xea\x90\xef\xdf\x35\x50\x5b\x4a\x7b\xc2\xec\x4b\xa8\x8f\x4c\x61\x8d\x2d\x84\x2c\x0b\xce\x6a\x02\x67\x6c\x8e\x51\x0b\x5a\x74\x95\x46\x2b\xd5\xc9\x25\x94\xcd\x99\xac\xb5\x01\xab\x80\xb3\xdc\xa1\xf5\x6a\x2b\xad\x85\x52\x84\xea\xea\xa6\xd2\x29\x03\x01\x91\x41\x2b\x42\x1a\xc6\x81\x0e\x80\x91\x6f\xad\x67\xb0\x67\x52\xed\xa6\x02\x4f\xe8\xcf\xe3\x5e\xcf\x7e\xff\xf9\xd7\xcf\xef\x3e\xce\x18\xbb\x5a\xac\xd7\xcb\x84\xf0\x82\xb3\xc5\xd6\xfb\xea\x76\xb5\x2a\x51\xc9\x72\x8b\xe4\x4f\x8d\xa2\x40\x2c\x4a\x08\x37\x08\xf7\x30\x70\x90\x99\xd2\x90\x3f\xcf\x35\x00\x8f\xce\xfc\x0b\x42\xa1\x86\x93\xd9\x57\xa5\x51\x26\x86\x89\x2d\x3a\x19\x2d\xa2\x10\x34\x39\xe2\x29\x93\x2e\xfa\x81\x05\x49\x83\x67\xa4\x31\x1a\x28\x3c\x0e\xcd\x13\xe5\x14\xd8\x07\x3a\xe5\x18\x4e\x37\xbd\x3d\xcd\x51\xb8\xf1\x75\xbe\x83\x23\xcd\x6f\xd9\x9f\x7f\x3d\x0c\x02\x84\x59\x0a\x47\x8b\x16\x06\xea\xda\x99\xf5\xa9\x97\x37\xc1\xe4\x68\xf3\xe6\x6d\x12\xde\x6c\xa2\x50\xd5\x59\x69\x54\xeb\x46\xb7\xab\xd5\xe1\x70\x78\x8d\xee\xf8\x9a\xb6\x2b\x59\x99\x41\xc0\x5c\x2d\x53\xcb\x56\x0b\xce\xbc\xab\xa1\x37\xc5\xee\xaf\x57\xa7\xe1\x71\xb3\x1a\xf8\x66\xe7\xbe\xd7\x3f\xcd\x86\xab\x3f\x7b\x95\x76\x1f\x43\x1b\x36\x71\x0b\xc2\xda\x28\xe9\xc3\x68\x34\x23\xd2\x50\x42\x6f\x03\x9d\x36\x2d\x8d\x77\xd8\x90\x3d\xec\x33\x70\xdd\x08\xbd\x8a\x13\x54\x62\x61\xec\xb2\x09\xb2\x34\x7a\xc1\xd9\xdd\x87\x3f\xae\xae\x39\x0b\x56\xaa\xb3\xff\x93\x53\xb3\x8d\xec\x4a\x6d\x65\x59\x82\x2d\x80\xb3\x7f\xc0\xc5\x4d\xef\x68\x21\xe4\x3b\xc8\xae\xdd\xe6\x92\x33\xda\x99\xaa\x53\x81\x16\x0d\x15\x29\x72\xf9\x54\x89\xfd\xc5\x70\x42\xa3\x95\x08\x1c\x04\xf7\x3e\xd2\x92\xe9\x30\x8a\x8f\x1c\xde\x16\xed\xba\x9f\x81\xd2\xa5\xbd\x48\x30\xb4\xb9\x37\xc7\x7e\x4c\x13\x44\xa1\x84\xe6\xd4\xae\xfa\x82\xb3\x5c\x96\x04\xcd\x9d\x50\x40\xeb\x4c\x2e\xef\x41\x6e\xb1\xfe\xfa\xd0\x98\x27\xfa\x11\xd4\xb2\xd6\x8b\xcb\x2d\x50\x81\xd2\xac\x7f\x41\xd8\xe7\xe8\x54\x88\xd0\x10\x6c\x4f\xf6\x53\x6d\x49\x9a\x41\xce\x93\x7d\xe2\x4c\x2a\x97\x5e\x31\x70\xef\x5f\x4e\xd7\x52\xa9\xcd\xba\x5c\x68\xe3\x79\x8a\xa1\xad\x8d\xa4\x1a\x1a\xcb\x11\xe7\xb7\xf3\x4c\xba\xf9\xc3\xf7\x75\x5c\x6c\xa5\xd5\x25\xe8\x51\xe7\xe3\x2b\xbe\x6f\x63\x4b\x02\xbd\x24\x72\x74\x9c\x81\x73\xe8\xce\xbb\xd9\xb6\x47\x2a\x05\x44\x89\xe0\x7b\x6d\x4b\xf9\x53\x53\x71\x90\x24\x6a\x0a\xaf\xc1\xf6\xf9\xcf\xdf\xb5\x16\xf5\x44\xa2\x3f\xbe\xbd\xb9\x69\x81\x1e\xa3\x3e\x54\x0d\x9a\xf6\xf4\xa2\x4c\x73\xd5\x24\x7a\x8f\xc8\xf3\x1b\xb8\xc5\xa1\x1c\x83\x77\x09\x94\x0b\x8b\xf1\xbc\xc9\xee\x69\x79\x8c\xd0\x62\xfd\x68\x46\x07\xd0\x8c\x87\xf4\x7b\x26\x0d\xb3\xbc\xa6\xa6\x92\x6f\xbc\x7d\x3a\xa8\x1e\x33\xcc\xc0\xfd\xac\xae\x7e\x5f\x46\xcb\xd9\xdf\x7f\x22\xaf\xee\xfb\xea\x12\xe5\x75\x99\x51\xc8\x69\x90\xde\x88\xf7\x22\x05\x24\xb1\x6f\x54\x98\xfc\xca\x43\xbc\x1b\x62\x44\xa9\x12\xc6\x1a\x6f\x26\xca\x79\x82\x80\xc6\x9c\xf3\x98\x1b\x46\x1f\x3f\x14\x3f\x15\x62\x82\xcb\xda\x95\xab\xb1\x3e\xd1\x55\x30\xf4\x94\x35\xf1\x2f\xa0\x37\xfc\x49\xf1\x0b\x1e\xec\xec\xbf\x00\x00\x00\xff\xff\xd0\xeb\x21\xe1\x64\x0c\x00\x00")
func migrationsSqlTests11_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests11_testSql,
"migrations/sql/tests/11_test.sql",
)
}
func migrationsSqlTests11_testSql() (*asset, error) {
bytes, err := migrationsSqlTests11_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/11_test.sql", size: 3172, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests12_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x57\x4d\x6f\x1c\x37\x0f\x3e\x67\x7f\x85\xe0\xcb\xda\x78\xb5\x59\xef\xbe\x48\x0e\xee\xa9\x40\x73\x08\x60\x38\x40\x13\xb7\x87\xa2\x10\x34\x12\x67\x56\xf1\xac\x38\x15\x35\x5d\xbb\x59\xff\xf7\x42\xd2\x7c\x7b\xb2\x76\x8a\x1e\xd2\x8b\x4d\x91\x22\x87\x7c\x48\x3e\x33\xbb\x5a\xb1\xff\xed\x4d\xe1\xa4\x07\x76\x5b\x2d\xde\xdf\x7c\x7c\xf7\xf3\x27\xf6\xfe\xe6\xd3\x07\xb6\x7b\xd0\x4e\x0a\x55\x1a\xb0\x9e\x9d\x1b\xcd\x99\x2c\x4b\x3c\x80\x16\x0a\x1d\x09\x74\xa6\x30\x96\x38\x4b\x37\x84\x95\x7b\xe8\x0e\x04\xca\x81\xe7\xcc\x81\x36\x0e\x94\x17\xb5\x33\xc4\x59\xe1\xa4\xf5\xc2\x3f\x54\x40\xc1\x46\x15\x5a\x82\xf6\x4c\x0a\x2b\xe0\x0c\x0f\x16\x1c\x67\x15\x96\x46\x3d\x04\x3f\xce\x3c\x52\x12\x9a\xe8\x51\x2e\xb1\xc0\x46\x8b\xd6\x4b\xe5\x69\xf2\x74\x01\xf7\x95\x71\x40\x42\x7a\xce\x08\x94\x47\x27\x8c\x06\xeb\x4d\x6e\xc0\x25\xd7\xcf\x87\x3b\x4a\x7f\xdb\x27\xdd\x81\x15\x60\x75\x85\xc6\x7a\x21\x6b\xbf\x13\x7b\xf0\x3b\xd4\x21\xdf\x3f\x6a\xa0\xb6\x94\xf6\x84\xd9\xe7\x50\x1f\x99\xc2\x1a\x5b\x08\x59\x16\x9c\xd5\x04\xce\xd8\x1c\xa3\x16\xb4\xe8\x2a\x8d\x56\xaa\x93\x4b\x28\x9b\x33\x59\x6b\x03\x56\x01\x67\xb9\x43\xeb\xd5\x4e\x5a\x0b\xa5\x08\xd5\xd5\x4d\xa5\x73\x06\x02\x22\x83\x56\x84\x34\x8c\x03\x1d\x00\x23\xdf\x5a\x27\xb0\x67\x52\xdd\xcd\x05\x9e\xd1\x4f\xe3\x5e\x2c\x7e\xf9\xf1\xfa\xf6\xdd\xc7\x05\x63\xe7\xcb\xcd\x76\x95\x10\x5e\x72\xb6\xdc\x79\x5f\x5d\xad\xd7\x25\x2a\x59\xee\x90\xfc\xb1\x51\x14\x88\x45\x09\xe1\x06\xe1\x1e\x06\x0e\x32\x53\x1a\xf2\x97\xb9\x06\xe0\xd1\x99\xbf\x40\x28\xd4\x70\x34\xfb\xaa\x34\xca\xc4\x30\xb1\x45\x47\xa3\x45\x14\x82\x26\x47\x3c\x66\xd2\x45\x3f\xb0\x20\x69\xf0\x8c\x34\x46\x03\x85\xc7\xa1\x79\xa6\x9c\x02\xfb\x40\xc7\x1c\xc3\xe9\xb2\xb7\xa7\x39\x0a\x37\xbe\x9c\xdd\xc1\x03\x9d\x5d\xb1\xdf\x7e\x7f\x1c\x04\x08\xb3\x14\x8e\x16\x2d\x0c\xd4\xb5\x33\x9b\x63\x2f\x6f\x83\xc9\xd1\xf6\xcd\xdb\x24\xbc\xd9\x46\xa1\xaa\xb3\xd2\xa8\xd6\x8d\xae\xd6\xeb\xc3\xe1\xf0\x1a\xdd\xc3\x6b\xda\xad\x65\x65\x06\x01\x73\xb5\x4a\x2d\x5b\x2f\x39\xf3\xae\x86\xde\x14\xbb\xbf\x59\x1f\x87\xc7\xed\x7a\xe0\x9b\x4d\x7d\x2f\x7e\x58\x0c\x57\x7f\xf1\x2a\xed\x3e\x86\x36\x6c\xe3\x16\x84\xb5\x51\xd2\x87\xd1\x68\x46\xa4\xa1\x84\xde\x06\x3a\x6d\x5a\x1a\xef\xb0\x21\x7b\xd8\x67\xe0\xba\x11\x7a\x15\x27\xa8\xc4\xc2\xd8\x55\x13\x64\x65\xf4\x92\xb3\x9b\x0f\xbf\x9e\x5f\x70\x16\xac\x54\x67\xff\x24\xa7\x66\x1b\xd9\xb9\xda\xc9\xb2\x04\x5b\x00\x67\x7f\x82\x8b\x9b\xde\xd1\x42\xc8\x77\x90\x5d\xbb\xcd\x25\x67\x74\x67\xaa\x4e\x05\x5a\x34\x54\xa4\xc8\xe5\x73\x25\xf6\x17\xc3\x09\x8d\x56\x22\x70\x10\xdc\xfb\x48\x4b\xa6\xc3\x28\x3e\x72\x78\x5b\xb4\xeb\x3e\x01\xa5\x4b\x7b\x99\x60\x68\x73\x6f\x8e\xfd\x98\x26\x88\x42\x09\xcd\xa9\x5d\xf5\x25\x67\xb9\x2c\x09\x9a\x3b\xa1\x80\xd6\x99\x5c\xde\x83\xdc\x62\xfd\xe5\xb1\x31\xcf\xf4\x23\xa8\x65\xad\x97\xa7\x5b\xa0\x02\xa5\x59\xff\x1d\x61\x9f\xa3\x53\x21\x42\x43\xb0\x3d\xd9\xcf\xb5\x25\x69\x06\x39\xcf\xf6\x89\x33\xa9\x5c\x7a\xc5\xc0\xbd\xff\x7e\xba\x96\x4a\x6d\xd6\xe5\x44\x1b\xa7\x29\x86\xb6\x36\x92\x6a\x68\x2c\x47\x3c\xbb\x3a\xcb\xa4\x3b\x7b\xfc\xb6\x8e\x8b\x9d\xb4\xba\x04\x3d\xea\x7c\x7c\xc5\xf7\x6d\x6c\x49\xa0\x97\x44\x8e\x8e\x33\x70\x0e\xdd\xb4\x9b\x6d\x7b\xa4\x52\x40\x94\x08\xbe\xd7\xb6\x94\x3f\x37\x15\x07\x49\xa2\xa6\xf0\x1a\x6c\x9f\xff\xf2\x5d\x6b\x51\x4f\x24\xfa\xff\xb7\x97\x97\x2d\xd0\x63\xd4\x87\xaa\x41\xd3\x9e\x5f\x94\x79\xae\x9a\x45\xef\x09\x79\x7e\x05\xb7\x38\x94\x63\xf0\x4e\x81\x72\x62\x31\x5e\x36\xd9\x3d\x2d\x8f\x11\x5a\x6e\x9e\xcc\xe8\x00\x9a\xf1\x90\x7e\xcb\xa4\x61\x96\xd7\xd4\x54\xf2\x95\xb7\x4f\x07\xd5\x53\x86\x19\xb8\x4f\xea\xea\xf7\x65\xb4\x9c\xfd\xfd\x67\xf2\xea\xbe\xaf\x4e\x51\x5e\x97\x19\x85\x9c\x06\xe9\x8d\x78\x2f\x52\x40\x12\xfb\x46\x85\xc9\xaf\x3c\xc4\xbb\x21\x46\x94\x2a\x61\xac\xf1\x66\xa6\x9c\x67\x08\x68\xcc\x39\x4f\xb9\x61\xf4\xf1\x43\xf1\x53\x21\x26\xb8\xaa\x5d\xb9\x1e\xeb\x13\x5d\x05\x43\x4f\x59\x33\xff\xfe\x53\xe8\x6d\x9e\xe0\xb7\x99\x22\xb8\x99\x60\xb8\x99\x7c\xb8\xdc\x5e\x5f\xff\xdb\xf0\x0d\x7f\x91\xfd\x84\x07\xbb\xf8\x3b\x00\x00\xff\xff\x6c\x98\x46\x14\xa3\x0d\x00\x00")
func migrationsSqlTests12_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests12_testSql,
"migrations/sql/tests/12_test.sql",
)
}
func migrationsSqlTests12_testSql() (*asset, error) {
bytes, err := migrationsSqlTests12_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/12_test.sql", size: 3491, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests1_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\xcd\x8e\xdb\x36\x10\x3e\xc7\x4f\x41\xe4\x22\x2f\x4a\x47\x6b\x17\xc9\x61\x7b\x2a\xd0\x1c\x02\x14\x1b\xa0\x49\xda\x43\x51\x10\x14\x39\x92\x18\xd3\x1c\x95\x43\x55\x71\xe3\xbc\x7b\x41\x51\xb2\xb4\x8a\xd0\xee\xf6\x9c\x8b\x31\x3f\x9c\xe1\x7c\x1f\x67\xc6\xda\xed\xd8\x77\x27\x53\x79\x19\x80\x7d\x68\x36\x9b\x37\xf7\xef\x5e\xff\xf2\x9e\xbd\xb9\x7f\xff\x96\xd5\x67\xed\xa5\x50\xd6\x80\x0b\x6c\x6b\x34\x67\xd2\x5a\xec\x40\x0b\x85\x9e\x04\x7a\x53\x19\x47\x9c\xa5\x13\xc2\xc9\x13\x5c\x15\x02\xe5\x21\x70\xe6\x41\x1b\x0f\x2a\x88\xd6\x1b\xe2\xac\xf2\xd2\x05\x11\xce\x0d\x50\xf4\x51\x83\x8e\x60\xd4\x49\x61\x03\x9c\x61\xe7\xc0\x73\xd6\xa0\x35\xea\x1c\xe3\x38\x0b\x48\x49\x18\xb2\xf7\xb2\xc5\x0a\x07\x2b\xba\x20\x55\xa0\xc5\xed\x02\x3e\x35\xc6\x03\x09\x19\x38\x23\x50\x01\xbd\x30\x1a\x5c\x30\xa5\x01\x9f\x42\x3f\x76\x47\x4a\xbf\xe3\x4d\x47\x70\x02\x9c\x6e\xd0\xb8\x20\x64\x1b\x6a\x71\x82\x50\xa3\x8e\xf5\xfe\xd9\x02\x8d\x50\x46\x0d\x8b\x8f\x11\x1f\x99\xca\x19\x57\x09\x69\x2b\xce\x5a\x02\x6f\x5c\x89\xbd\x15\xb4\xb8\x22\xed\xbd\xd4\xa6\x90\x08\x9b\x33\xd9\x6a\x03\x4e\x01\x67\xa5\x47\x17\x54\x2d\x9d\x03\x2b\x22\xba\x76\x40\xba\xe6\x20\x20\x32\xe8\x44\x2c\xc3\x78\xd0\x91\x30\x0a\xa3\x77\x41\x7b\x21\xd5\x71\x2d\xf1\x8a\x7d\x99\xf7\x66\xf3\xeb\x8f\x3f\x7f\x78\xfd\x6e\xc3\xd8\x36\xdb\xef\x12\xc1\x19\x67\x59\x1d\x42\x73\x97\xe7\x16\x95\xb4\x35\x52\xb8\x0c\x86\x0a\xb1\xb2\x10\x4f\x10\x9e\x60\x16\x20\x0b\xa5\xa1\x7c\x5c\x68\xe4\x1d\xbd\xf9\x1b\x84\x42\x0d\x17\x73\x6a\xac\x51\xa6\x4f\xd3\xbf\xd0\xc5\x68\xd1\x0b\xd1\x52\x22\x5e\x0a\xe9\xfb\x38\x70\x20\x69\x76\x47\xea\xa2\x99\x21\xe0\xdc\xbd\x02\xa7\xc2\x29\xd1\xa5\xc4\xa8\xdd\x4e\xfe\xd4\x46\xf1\xc4\xe7\xe7\x47\x38\xd3\xf3\x3b\xf6\xfb\x1f\x5f\x66\x09\x62\x2b\x45\xd5\xa1\x83\x99\xb9\xf5\x66\x7f\x99\xe4\x43\x74\x79\x3a\xbc\x7c\x95\x84\x97\x87\x5e\x68\xda\xc2\x1a\x35\x86\xd1\x5d\x9e\x77\x5d\xf7\x02\xfd\xf9\x05\xd5\xb9\x6c\xcc\x2c\x61\xa9\x76\xe9\xc5\xf2\x8c\xb3\xe0\x5b\x98\x5c\xfd\xe3\xef\xf3\xcb\x5c\x3d\xe4\xb3\xd8\x62\x19\x7b\xf3\xc3\x83\xc9\xdf\x3c\x4b\xa3\x8f\xf1\x19\x0e\xfd\x10\xc4\xa9\x51\x32\xc4\xce\x18\x3a\x64\xd8\x08\x93\x0f\x74\x1a\xb4\xd4\xdd\xd7\xbe\x79\x16\xdb\xc6\x62\x65\xdc\x6e\x88\xdc\x19\x9d\x71\x76\xff\xf6\xb7\xed\x0d\x67\xd9\x7e\x47\x6d\x91\x3d\xa9\x82\x61\xf4\xd8\x56\xd5\xd2\x5a\x70\x15\x70\xf6\x17\xf8\x7e\xac\xaf\x3b\x20\x56\x37\xd4\x32\x1f\x5d\xcb\x19\x1d\x4d\x73\x35\x81\x16\xc3\xde\x51\xe4\xcb\x35\x40\xd3\xc1\xa8\xa1\xd1\x4a\xc4\x85\x03\x9f\x16\x18\xaf\xc5\x64\x3d\xaa\xb1\xa0\xa4\x4d\x8d\xd6\xe3\x8d\x55\x25\x65\x9c\xd4\x8c\xb3\x52\x5a\x82\x74\x22\x56\x34\x04\x92\x2f\x27\xb6\x46\xd2\x3e\x7f\xf9\x0f\xc6\x54\x5c\x37\x2e\x7c\xa3\xea\xc9\x54\x89\x5a\x3a\x6d\x41\x3f\xa0\xac\xff\xdf\x9a\xf0\x7b\x38\xc1\xa9\x88\x0c\x8e\x92\x28\xd1\x73\x06\xde\xa3\x5f\xd2\x30\x6e\x54\xa9\x14\x10\xa5\xb5\x35\x59\xc7\x45\xb6\x46\x67\x27\x49\xb4\x34\xdb\xc1\x6b\xe4\x8d\x04\xa4\x1d\xf0\xfd\xab\xdb\xdb\x04\xfa\x01\x03\x0b\x53\x4f\xdf\x92\x15\xf6\x88\x91\x5b\x25\x67\xd6\x3a\xff\x4a\x8b\x54\x5f\x71\xf3\x7f\x31\xb7\xc5\x2a\xe2\x6c\xff\xd5\xfb\x5f\xa1\xce\xbf\x74\x7e\xc2\xce\x6d\xfe\x09\x00\x00\xff\xff\x5e\xf6\x6c\x67\xfb\x08\x00\x00")
func migrationsSqlTests1_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests1_testSql,
"migrations/sql/tests/1_test.sql",
)
}
func migrationsSqlTests1_testSql() (*asset, error) {
bytes, err := migrationsSqlTests1_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/1_test.sql", size: 2299, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests2_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xc1\x8e\xdb\x36\x10\x3d\xc7\x5f\x41\xe4\x22\x2f\x4a\xc7\xbb\x2e\x92\xc3\xf6\x54\xa0\x39\x04\x28\x36\x40\x93\xb4\x87\xa2\x20\x28\x72\x24\x31\xa6\x39\x2a\x87\xaa\xe3\xc6\xf9\xf7\x82\xa4\x64\x69\xb5\x4a\xbb\xdd\x4b\x7b\x59\x70\x66\x38\xa3\x99\xc7\x37\x6f\xbd\xd9\xb0\x6f\x0e\xa6\xf6\x32\x00\xfb\xd0\xae\xde\xdc\xbd\x7b\xfd\xd3\x7b\xf6\xe6\xee\xfd\x5b\xd6\x9c\xb4\x97\x42\x59\x03\x2e\xb0\xb5\xd1\x9c\x49\x6b\xf1\x08\x5a\x28\xf4\x24\xd0\x9b\xda\x38\xe2\x2c\xdf\x10\x4e\x1e\xe0\x62\x10\x28\x0f\x81\x33\x0f\xda\x78\x50\x41\x74\xde\x10\x67\xb5\x97\x2e\x88\x70\x6a\x81\x62\x8c\x5a\x74\x04\x83\x4d\x0a\x5b\xe0\x0c\x8f\x0e\x3c\x67\x2d\x5a\xa3\x4e\x31\x8f\xb3\x80\x94\x0f\x7d\xf5\x74\xb6\x58\x63\xef\x45\x17\xa4\x0a\x34\xfb\xba\x80\x4f\xad\xf1\x40\x42\x06\xce\x08\x54\x40\x2f\x8c\x06\x17\x4c\x65\xc0\xe7\xd4\x8f\xc7\x3d\xe5\xbf\xc3\x97\xf6\xe0\x04\x38\xdd\xa2\x71\x41\xc8\x2e\x34\xe2\x00\xa1\x41\x1d\xfb\xfd\xbd\x03\x1a\x46\x19\x2c\x2c\x3f\xc6\xf9\xc8\xd4\xce\xb8\x5a\x48\x5b\x73\xd6\x11\x78\xe3\x2a\x4c\x5e\xd0\xe2\x32\x69\x8a\x52\x97\x53\xe2\xd8\x9c\xc9\x4e\x1b\x70\x0a\x38\xab\x3c\xba\xa0\x1a\xe9\x1c\x58\x11\xa7\xeb\xfa\x49\x97\x02\x04\x44\x06\x9d\x88\x6d\x18\x0f\x3a\x02\x46\x61\x88\xce\x60\x2f\xa5\xda\x2f\x15\x5e\xf0\xcf\xeb\x5e\xad\x7e\xfe\xfe\xc7\x0f\xaf\xdf\xad\x18\x5b\x17\xbb\x4d\x06\xb8\xe0\xac\x68\x42\x68\x6f\xb7\x5b\x8b\x4a\xda\x06\x29\x9c\x7b\x47\x8d\x58\x5b\x88\x37\x08\x0f\x30\x49\x90\xa5\xd2\x50\x3d\x2e\x35\xe2\x8e\xde\xfc\x09\x42\xa1\x86\xb3\x39\xb4\xd6\x28\x93\xca\xa4\x17\x3a\x1b\x2d\xd2\x21\x7a\x2a\xc4\x73\x29\x7d\xca\x03\x07\x92\x26\xdf\xc8\x2c\x9a\x38\x02\x4e\xc3\x0b\xe3\xd4\x38\x16\x3a\x57\x18\xad\xeb\x31\x9e\x69\x14\x6f\x7c\x7e\xbe\x87\x13\x3d\xbf\x65\xbf\xfe\xf6\x65\x52\x20\x52\x29\x9a\x0e\x1d\x4c\xdc\x9d\x37\x37\xe7\xf1\xbc\x8b\x21\x4f\xbb\x97\xaf\xf2\xe1\xe5\x2e\x1d\xda\xae\xb4\x46\x0d\x69\x74\xbb\xdd\x1e\x8f\xc7\x17\xe8\x4f\x2f\xa8\xd9\xca\xd6\x4c\x0a\x56\x6a\x93\x5f\x6c\x5b\x70\x16\x7c\x07\x63\x28\x3d\xfe\xcd\xf6\x3c\x35\x77\xdb\x49\x6e\x39\xcf\xbd\xfa\x6e\x35\xdd\xfc\xd5\xb3\xbc\xfa\x18\x9f\x61\x97\x96\x20\x6e\x8d\x92\x21\x32\xa3\x67\x48\xaf\x08\x63\x0c\x74\x5e\xb4\xcc\xee\x0b\x6f\x9e\x45\xda\x58\xac\x8d\xdb\xf4\x99\x1b\xa3\x0b\xce\xee\xde\xfe\xb2\xbe\xe2\xac\xd8\x6d\xa8\x2b\x8b\x7f\xd5\x41\xbf\x7a\x6c\xad\x1a\x69\x2d\xb8\x1a\x38\xfb\x03\x7c\x5a\xeb\x8b\x06\xc4\xee\xfa\x5e\xa6\xab\x6b\x39\xa3\xbd\x69\x2f\x2e\xd0\xa2\xd7\x1d\x45\xbe\x5a\x1a\x68\xbc\x18\x2d\x34\x5a\x89\x28\x38\xf0\x69\x36\xe3\xa5\x99\x22\x4d\x35\x34\x94\xad\x91\x68\x69\xde\xd8\x55\x36\x86\x4d\x2d\x38\xab\xa4\x25\xc8\x37\x62\x47\x7d\x22\xf9\x6a\x44\x6b\x00\xed\xf3\x97\x7f\x40\x4c\x45\xb9\x71\xe1\x7f\x03\x15\x67\x15\x7a\x15\x2b\xf4\xe2\x37\x0a\xf1\x7f\x8a\x62\x8a\xe6\xd6\x1e\xc1\xc3\x19\xaa\xa2\x91\x4e\x5b\xd0\xf7\xd0\x4d\xff\xe2\x46\xa8\x3c\x1c\xe0\x50\x46\xb0\x87\x93\xa8\xd0\x73\x06\xde\xa3\x9f\x23\x36\x88\xaf\x54\x0a\x88\xb2\xc2\x8d\xde\x41\xf3\x96\x90\x3f\x4a\x12\x1d\x4d\xe4\x7a\x09\xcc\x01\x90\x2c\x17\xdf\xbe\xba\xbe\x1e\x40\xb8\x8f\xc8\xd4\x95\xe0\x7c\xca\x76\x2e\x82\x33\x61\xd9\xdf\xc2\x22\xd5\x03\x6c\xbe\x3e\xf3\x53\xb9\x15\xdf\x7b\x09\x8c\xe2\xe6\x01\x55\x46\x52\x3d\x9a\x2b\x58\x56\x1d\xf5\xcd\x7e\x45\x40\x2f\x68\x3c\xdc\xc3\x49\xfa\xfd\x19\x72\xd3\xb3\x5d\x18\x2f\xa7\xa6\xa6\xbf\xe9\x7e\xc0\xa3\x5b\xfd\x15\x00\x00\xff\xff\xd6\x9c\xb5\x3b\xe5\x09\x00\x00")
func migrationsSqlTests2_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests2_testSql,
"migrations/sql/tests/2_test.sql",
)
}
func migrationsSqlTests2_testSql() (*asset, error) {
bytes, err := migrationsSqlTests2_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/2_test.sql", size: 2533, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests3_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x4b\x8f\x1b\x37\x0c\x3e\xc7\xbf\x42\xc8\x65\x76\x51\x39\xde\xf5\x22\x39\x6c\x4f\x05\x9a\x43\x80\x62\x03\x34\x49\x7b\x28\x0a\x41\x23\x71\x66\x14\xcb\xe2\x54\xd4\xd4\x71\xe3\xfc\xf7\x42\xd2\xbc\xfc\x88\xd1\xf4\xd2\x5e\x16\x7c\x88\x1c\xf2\xe3\x47\xae\x97\x4b\xf6\xdd\xd6\xd4\x5e\x06\x60\x1f\xda\xc5\x9b\xa7\x77\xaf\x7f\x7e\xcf\xde\x3c\xbd\x7f\xcb\x9a\xbd\xf6\x52\x28\x6b\xc0\x05\x76\x63\x34\x67\xd2\x5a\xdc\x81\x16\x0a\x3d\x09\xf4\xa6\x36\x8e\x38\xcb\x2f\x84\x93\x5b\x18\x15\x02\xe5\x21\x70\xe6\x41\x1b\x0f\x2a\x88\xce\x1b\xe2\xac\xf6\xd2\x05\x11\xf6\x2d\x50\xf4\x51\x8b\x8e\x60\xd0\x49\x61\x0b\x9c\xe1\xce\x81\xe7\xac\x45\x6b\xd4\x3e\xc6\x71\x16\x90\xb2\xd0\x67\x4f\xb2\xc5\x1a\x7b\x2b\xba\x20\x55\xa0\x93\xaf\x0b\xf8\xd4\x1a\x0f\x24\x64\xe0\x8c\x40\x05\xf4\xc2\x68\x70\xc1\x54\x06\x7c\x0e\xfd\xb8\xdb\x50\xfe\x3b\x7c\x69\x03\x4e\x80\xd3\x2d\x1a\x17\x84\xec\x42\x23\xb6\x10\x1a\xd4\xb1\xde\x3f\x3a\xa0\xa1\x95\x41\xc3\xf2\x63\xec\x8f\x4c\xed\x8c\xab\x85\xb4\x35\x67\x1d\x81\x37\xae\xc2\x64\x05\x2d\xc6\x4e\x93\x97\xba\x1c\x12\xdb\xe6\x4c\x76\xda\x80\x53\xc0\x59\xe5\xd1\x05\xd5\x48\xe7\xc0\x8a\xd8\x5d\xd7\x77\x7a\xc9\x41\x40\x64\xd0\x89\x58\x86\xf1\xa0\x23\x60\x14\x06\xef\x09\xec\xa5\x54\x9b\x4b\x89\x2f\xd8\x4f\xf3\xde\x2e\x7e\xf9\xe1\xa7\x0f\xaf\xdf\x2d\x18\xbb\x29\x1e\x96\x19\xe0\x82\xb3\xa2\x09\xa1\x7d\x5c\xad\x2c\x2a\x69\x1b\xa4\x70\xe8\x0d\x35\x62\x6d\x21\xbe\x20\xdc\xc2\x2c\x40\x96\x4a\x43\xf5\xcf\x42\x23\xee\xe8\xcd\x5f\x20\x14\x6a\x38\x98\x6d\x6b\x8d\x32\x29\x4d\x9a\xd0\xc1\x68\x91\x84\x68\xa9\x10\x0f\xa5\xf4\x29\x0e\x1c\x48\x9a\x7d\x23\xb3\x68\x66\x08\x38\x77\x5f\x68\xa7\xc6\x29\xd1\xa1\xc2\xa8\xdd\x4d\xfe\x4c\xa3\xf8\xe2\xf3\xf3\x0d\xec\xe9\xf9\x23\xfb\xed\xf7\x2f\xb3\x04\x91\x4a\x51\x75\xe8\x60\x66\xee\xbc\xb9\x3f\x4c\xf2\x3a\xba\x3c\xad\x5f\xbe\xca\xc2\xcb\x75\x12\xda\xae\xb4\x46\x0d\x61\xf4\xb8\x5a\xed\x76\xbb\x17\xe8\xf7\x2f\xa8\x59\xc9\xd6\xcc\x12\x56\x6a\x99\x27\xb6\x2a\x38\x0b\xbe\x83\xc9\x95\x86\x7f\xbf\x3a\xcc\xd5\xf5\x6a\x16\x5b\x9e\xc6\xde\x7e\xbf\x98\x6f\xfe\xe2\x59\x5e\x7d\x8c\x63\x58\xa7\x25\x88\x5b\xa3\x64\x88\xcc\xe8\x19\xd2\x5f\x84\xc9\x07\x3a\x2f\x5a\x66\xf7\xc8\x9b\x67\x91\x36\x16\x6b\xe3\x96\x7d\xe4\xd2\xe8\x82\xb3\xa7\xb7\xbf\xde\xdc\x72\x56\x3c\x2c\xa9\x2b\x8b\x6f\xaa\xa0\x5f\x3d\x76\xa3\x1a\x69\x2d\xb8\x1a\x38\xfb\x13\x7c\x5a\xeb\xf1\x06\xc4\xea\xfa\x5a\xe6\xab\x6b\x39\xa3\x8d\x69\x47\x13\x68\xd1\xdf\x1d\x45\xbe\xba\xd4\xd0\xf4\x30\x6a\x68\xb4\x12\xf1\xe0\xc0\xa7\x90\x6e\x90\x19\x11\x11\x46\x1f\x77\x3d\x96\x57\xa4\x3e\x87\x12\xb3\x36\x51\x2f\x21\x10\xeb\xcc\xca\xb0\xbb\x05\x67\x95\xb4\x04\xf9\x45\xac\xb1\x0f\x24\x5f\x4d\xf8\x0d\x30\x7e\xfe\x92\xbd\x67\x48\x5f\x47\x56\xc5\xb3\xe4\xc2\xff\x08\xd2\x0a\xbd\x8a\x19\xfa\x23\x39\x1d\xec\x73\xb4\x07\xcb\x58\xf3\x7f\x0f\x7f\xae\x3e\x51\xfa\xf2\x38\x72\x8e\xb1\xb2\x6f\x9a\x8e\x68\xa4\xd3\x16\xf4\xd1\x94\xd2\xbf\xd4\x09\x72\x0f\x5b\xd8\x96\x11\xad\x41\x12\x15\x7a\xce\xc0\x7b\xf4\xa7\xc8\x0f\x50\x4a\xa5\x80\x28\x5f\xd4\xc9\x3a\xdc\xd8\x4b\x13\xdc\x49\x12\x1d\xc1\x75\xc2\x0f\xa8\xe5\xf3\xf4\xf0\xea\xee\x6e\x40\xea\x18\xb6\xb9\x29\x61\xfe\x6f\xae\xc1\x45\x70\x66\x6c\xbd\x0a\x8b\x54\x67\xd8\x7c\xbd\xe7\x2b\x1c\xbd\x0e\x47\x22\xc5\x39\x18\xc5\xfd\x19\x9f\x26\xe6\xcd\x08\x75\x1d\x15\x2c\xab\x8e\xfa\x62\xbf\x72\xb0\x47\x34\xce\xf7\x79\x16\x7e\xdc\xc3\xc8\xe4\xf9\xc2\x4c\x8f\x53\x51\xf3\xdf\x90\x3f\xe2\xce\x2d\xfe\x0e\x00\x00\xff\xff\x5c\xd3\xf4\x55\x55\x0a\x00\x00")
func migrationsSqlTests3_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests3_testSql,
"migrations/sql/tests/3_test.sql",
)
}
func migrationsSqlTests3_testSql() (*asset, error) {
bytes, err := migrationsSqlTests3_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/3_test.sql", size: 2645, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests4_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xcd\x8e\x1b\x37\x0c\x3e\xc7\x4f\x21\xe4\x32\xbb\xa8\x1c\xef\x6e\x37\x39\x6c\x4f\x05\x9a\x43\x80\x62\x03\x34\x49\x7b\x28\x0a\x41\x96\x38\x63\xc5\xb2\x38\x15\x35\x75\xdc\x38\xef\x1e\x48\x9a\x1f\xad\x77\xe2\x24\xb7\x5c\x0c\x91\x14\x29\xf2\xe3\x47\x8e\x97\x4b\xf6\xd3\xce\x34\x5e\x06\x60\xef\xda\xc5\xab\xfb\x37\x2f\xff\x78\xcb\x5e\xdd\xbf\x7d\xcd\x36\x07\xed\xa5\x50\xd6\x80\x0b\xec\xc2\x68\xce\xa4\xb5\xb8\x07\x2d\x14\x7a\x12\xe8\x4d\x63\x1c\x71\x96\x6f\x08\x27\x77\x30\x0a\x04\xca\x43\xe0\xcc\x83\x36\x1e\x54\x10\x9d\x37\xc4\x59\xe3\xa5\x0b\x22\x1c\x5a\xa0\x68\xa3\x16\x1d\xc1\x20\x93\xc2\x16\x38\xc3\xbd\x03\xcf\x59\x8b\xd6\xa8\x43\xf4\xe3\x2c\x20\xe5\x43\x1f\x3d\x9d\x2d\x36\xd8\x6b\xd1\x05\xa9\x02\x9d\xbc\x2e\xe0\x43\x6b\x3c\x90\x90\x81\x33\x02\x15\xd0\x0b\xa3\xc1\x05\x53\x1b\xf0\xd9\xf5\xfd\x7e\x4b\xf9\x77\x78\x69\x0b\x4e\x80\xd3\x2d\x1a\x17\x84\xec\xc2\x46\xec\x20\x6c\x50\xc7\x7c\xff\xed\x80\x86\x52\x06\x09\xd7\xef\x63\x7d\x64\x1a\x67\x5c\x23\xa4\x6d\x38\xeb\x08\xbc\x71\x35\x26\x2d\x68\x31\x56\x9a\xac\xd4\x65\x97\x58\x36\x67\xb2\xd3\x06\x9c\x02\xce\x6a\x8f\x2e\xa8\x8d\x74\x0e\xac\x88\xd5\x75\x7d\xa5\x73\x06\x02\x22\x83\x4e\xc4\x34\x8c\x07\x1d\x01\xa3\x30\x58\x4f\x60\x5f\x4b\xb5\x9d\x0b\x3c\xa3\x3f\x8d\x7b\xb9\xf8\xf3\xd7\xdf\xdf\xbd\x7c\xb3\x60\xec\xa2\xba\x5d\x66\x80\x2b\xce\xaa\x4d\x08\xed\xdd\x6a\x65\x51\x49\xbb\x41\x0a\xc7\x5e\xd1\x20\x36\x16\xe2\x0d\xc2\x1d\x14\x0e\x72\xad\x34\xd4\xdf\xe6\x1a\x71\x47\x6f\xfe\x07\xa1\x50\xc3\xd1\xec\x5a\x6b\x94\x49\x61\x52\x87\x8e\x46\x8b\x74\x88\x9a\x1a\xf1\xb8\x96\x3e\xf9\x81\x03\x49\xc5\x1b\x99\x45\x85\x22\x60\x69\x9e\x29\xa7\xc1\x29\xd0\xb1\xc6\x28\x5d\x4d\xf6\x4c\xa3\x78\xe3\xe3\xd3\x2d\x1c\xe8\xe9\x1d\xfb\xfb\x9f\x4f\x45\x80\x48\xa5\x28\x3a\x74\x50\xa8\x3b\x6f\xae\x8f\xd3\xf9\x26\x9a\x3c\xdd\x3c\x7f\x91\x0f\xcf\x6f\xd2\xa1\xed\xd6\xd6\xa8\xc1\x8d\xee\x56\xab\xfd\x7e\xff\x0c\xfd\xe1\x19\x6d\x56\xb2\x35\x45\xc0\x5a\x2d\x73\xc7\x56\x15\x67\xc1\x77\x30\x99\x52\xf3\xaf\x57\xc7\x52\xbc\x59\x15\xbe\xeb\x53\xdf\xcb\x5f\x16\xe5\xe4\x2f\x9e\xe4\xd1\xc7\xd8\x86\x9b\x34\x04\x71\x6a\x94\x0c\x91\x19\x3d\x43\xfa\x8d\x30\xd9\x40\xe7\x41\xcb\xec\x1e\x79\xf3\x24\xd2\xc6\x62\x63\xdc\xb2\xf7\x5c\x1a\x5d\x71\x76\xff\xfa\xaf\x8b\x4b\xce\xaa\xdb\x25\x75\xeb\xea\xbb\x32\xe8\x47\x8f\x5d\xa8\x8d\xb4\x16\x5c\x03\x9c\xfd\x07\x3e\x8d\xf5\xb8\x03\x62\x76\x7d\x2e\xe5\xe8\x5a\xce\x68\x6b\xda\x51\x05\x5a\xf4\x7b\x47\x91\xaf\xe7\x0a\x9a\x2e\x46\x09\x8d\x56\x22\x2e\x1c\xf8\x10\xd2\x0e\x32\x23\x22\xe9\xc9\xf2\xb6\x18\x66\xfb\x21\x18\x63\xd6\x55\x2a\x7f\xc8\x3c\x4b\x13\x23\x13\x30\x31\xfd\x2c\x0c\x23\x5d\x71\x56\x4b\x4b\x90\x6f\xc4\xd4\x7b\x47\xf2\xf5\x04\xeb\x80\xee\xc7\x4f\xd9\x3a\xd3\x80\xea\x76\x29\x3b\xfd\x15\xe4\x55\x5c\x5b\x2e\xfc\x40\x90\xd7\xe8\x55\x8c\xd0\x2f\xd1\x69\xa1\xcf\x75\x23\x6b\x8a\x9c\x7f\xd0\xf6\xe4\xa2\xd2\x24\x9c\x69\xd7\x49\x66\xdf\xdd\x3d\xb1\x91\x4e\x5b\xd0\x0f\xba\x98\x3e\xc9\x53\x4b\x3c\xec\x60\xb7\x8e\x68\x0e\x27\x51\xa3\xe7\x0c\xbc\x47\x7f\xda\x99\x01\x6a\xa9\x14\x10\xe5\x8d\x3c\x69\x87\x1d\x3d\xd7\xe1\xbd\x24\xd1\x51\xfc\x6c\x0d\xef\x7f\x6b\x3f\x06\x4c\xf3\xce\xfb\xf9\xc5\xd5\xd5\x80\xe3\x43\x50\x4b\xd5\xd4\x91\xaf\x63\x36\xbf\x6b\x66\xa1\x2b\xb8\x7e\x16\x34\xa9\x1e\x21\x77\x0e\x91\x2f\x32\xfc\x3c\x2e\x89\x3b\x8f\x51\xa9\xae\x1f\xd1\x6e\x82\xa3\xe0\xdd\x79\x54\x70\x5d\x77\xd4\x27\xfb\x85\xcf\xc1\x88\xc6\xe3\x6d\x50\xb8\x3f\xac\x61\x24\x7c\x39\x57\xd3\xe5\x94\x54\xf9\x0f\xf5\x37\xdc\xbb\xc5\xe7\x00\x00\x00\xff\xff\x1c\x50\xeb\x5f\xb3\x0a\x00\x00")
func migrationsSqlTests4_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests4_testSql,
"migrations/sql/tests/4_test.sql",
)
}
func migrationsSqlTests4_testSql() (*asset, error) {
bytes, err := migrationsSqlTests4_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/4_test.sql", size: 2739, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests5_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xc1\x8e\x1b\x37\x0c\x3d\xc7\x5f\x21\xe4\x32\xbb\xa8\x1c\xef\xba\x70\x0e\xdb\x53\x81\xe6\x10\xa0\xd8\x00\x4d\xd2\x1e\x8a\x42\x90\x25\xce\x58\xb1\x2c\x4e\x45\x4d\x1d\x37\xce\xbf\x07\x92\x66\x3c\x5a\xef\xc4\x49\x6e\x7b\x31\x44\x52\xa4\xc8\xc7\x47\x8e\xe7\x73\xf6\xd3\xce\x34\x5e\x06\x60\xef\xdb\xd9\xeb\xfb\xb7\xaf\xfe\x78\xc7\x5e\xdf\xbf\x7b\xc3\x36\x07\xed\xa5\x50\xd6\x80\x0b\xec\xca\x68\xce\xa4\xb5\xb8\x07\x2d\x14\x7a\x12\xe8\x4d\x63\x1c\x71\x96\x6f\x08\x27\x77\x70\x12\x08\x94\x87\xc0\x99\x07\x6d\x3c\xa8\x20\x3a\x6f\x88\xb3\xc6\x4b\x17\x44\x38\xb4\x40\xd1\x46\x2d\x3a\x82\x41\x26\x85\x2d\x70\x86\x7b\x07\x9e\xb3\x16\xad\x51\x87\xe8\xc7\x59\x40\xca\x87\x3e\x7a\x3a\x5b\x6c\xb0\xd7\xa2\x0b\x52\x05\x3a\x7b\x5d\xc0\xc7\xd6\x78\x20\x21\x03\x67\x04\x2a\xa0\x17\x46\x83\x0b\xa6\x36\xe0\xb3\xeb\x87\xfd\x96\xf2\xef\xf0\xd2\x16\x9c\x00\xa7\x5b\x34\x2e\x08\xd9\x85\x8d\xd8\x41\xd8\xa0\x8e\xf9\xfe\xdb\x01\x0d\xa5\x0c\x12\xae\x3f\xc4\xfa\xc8\x34\xce\xb8\x46\x48\xdb\x70\xd6\x11\x78\xe3\x6a\x4c\x5a\xd0\xe2\x54\x69\xb2\x52\x97\x5d\x62\xd9\x9c\xc9\x4e\x1b\x70\x0a\x38\xab\x3d\xba\xa0\x36\xd2\x39\xb0\x22\x56\xd7\xf5\x95\x4e\x19\x08\x88\x0c\x3a\x11\xd3\x30\x1e\x74\x04\x8c\xc2\x60\x3d\x83\x7d\x2d\xd5\x76\x2a\xf0\x84\xfe\x3c\xee\xf5\xec\xcf\x5f\x7f\x7f\xff\xea\xed\x8c\xb1\xab\x6a\x35\xcf\x00\x57\x9c\x55\x9b\x10\xda\xbb\xc5\xc2\xa2\x92\x76\x83\x14\x8e\xbd\xa2\x41\x6c\x2c\xc4\x1b\x84\x3b\x28\x1c\xe4\x5a\x69\xa8\xbf\xcf\x35\xe2\x8e\xde\xfc\x0f\x42\xa1\x86\xa3\xd9\xb5\xd6\x28\x93\xc2\xa4\x0e\x1d\x8d\x16\xe9\x10\x35\x35\xe2\x71\x2d\x7d\xf2\x03\x07\x92\x8a\x37\x32\x8b\x0a\x45\xc0\xd2\x3c\x51\x4e\x83\x63\xa0\x63\x8d\x51\xba\x19\xed\x99\x46\xf1\xc6\xa7\xe7\x5b\x38\xd0\xf3\x3b\xf6\xf7\x3f\x9f\x8b\x00\x91\x4a\x51\x74\xe8\xa0\x50\x77\xde\xdc\x1e\xc7\xf3\x32\x9a\x3c\x2d\x57\x2f\xf3\x61\xb5\x4c\x87\xb6\x5b\x5b\xa3\x06\x37\xba\x5b\x2c\xf6\xfb\xfd\x0b\xf4\x87\x17\xb4\x59\xc8\xd6\x14\x01\x6b\x35\xcf\x1d\x5b\x54\x9c\x05\xdf\xc1\x68\x4a\xcd\xbf\x5d\x1c\x4b\x71\xb9\x28\x7c\xd7\xe7\xbe\xd7\xbf\xcc\xca\xc9\x9f\x3d\xcb\xa3\x8f\xb1\x0d\xcb\x34\x04\x71\x6a\x94\x0c\x91\x19\x3d\x43\xfa\x8d\x30\xda\x40\xe7\x41\xcb\xec\x3e\xf1\xe6\x59\xa4\x8d\xc5\xc6\xb8\x79\xef\x39\x37\xba\xe2\xec\xfe\xcd\x5f\x57\xd7\x9c\x55\xab\x39\x75\xeb\xea\x87\x32\xe8\x47\x8f\x5d\xa9\x8d\xb4\x16\x5c\x03\x9c\xfd\x07\x3e\x8d\xf5\x69\x07\xc4\xec\xfa\x5c\xca\xd1\xb5\x9c\xd1\xd6\xb4\x27\x15\x68\xd1\xef\x1d\x45\xbe\x9e\x2a\x68\xbc\x18\x25\x34\x5a\x89\xb8\x70\xe0\x63\x48\x3b\xc8\x9c\x10\x49\x4f\x96\xb7\xc5\x30\xdb\x0f\xc1\x38\x65\x5d\xa5\xf2\x87\xcc\xb3\x34\x32\x32\x01\x13\xd3\xcf\xc2\x30\xd2\x15\x67\xb5\xb4\x04\xf9\x46\x4c\xbd\x77\x24\x5f\x8f\xb0\x0e\xe8\x7e\xfa\x9c\xad\x13\x0d\xa8\x56\x73\xd9\xe9\x6f\x20\xaf\xe2\xda\x72\xe1\x09\x41\x5e\xa3\x57\x31\x42\xbf\x44\xc7\x85\x3e\xd5\x8d\xac\x29\x72\x7e\xa2\xed\xc9\x45\xa5\x49\xb8\xd0\xae\xb3\xcc\x7e\xb8\x7b\x62\x23\x9d\xb6\xa0\x1f\x74\x31\x7d\x92\xc7\x96\x78\xd8\xc1\x6e\x1d\xd1\x1c\x4e\xa2\x46\xcf\x19\x78\x8f\xfe\xbc\x33\x03\xd4\x52\x29\x20\xca\x1b\x79\xd4\x0e\x3b\x7a\xaa\xc3\x7b\x49\xa2\xa3\xf8\xd9\x1a\xde\xff\xde\x7e\x0c\x98\xe6\x9d\xf7\xf3\xcb\x9b\x9b\x01\xc7\x87\xa0\x96\xaa\xb1\x23\xdf\xc6\x6c\x7a\xd7\x4c\x42\x57\x70\xfd\x22\x68\x52\x3d\x42\xee\x12\x22\x5f\x65\xf8\x65\x5c\x12\x77\x1e\xa3\x52\xdd\x3e\xa2\xdd\x08\x47\xc1\xbb\xcb\xa8\xe0\xba\xee\xa8\x4f\xf6\x2b\x9f\x83\x13\x1a\x8f\xb7\x41\xe1\xfe\xb0\x86\x13\xe1\xcb\xb9\x1a\x2f\xa7\xa4\xca\x7f\xa8\xbf\xe1\xde\xcd\xbe\x04\x00\x00\xff\xff\x2c\x38\x67\x72\xb3\x0a\x00\x00")
func migrationsSqlTests5_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests5_testSql,
"migrations/sql/tests/5_test.sql",
)
}
func migrationsSqlTests5_testSql() (*asset, error) {
bytes, err := migrationsSqlTests5_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/5_test.sql", size: 2739, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests6_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x51\x6f\xdb\x36\x10\x7e\xae\x7f\x05\xd1\x17\xa5\x98\x14\x27\x0e\x9a\x01\xd9\xd3\x80\xf5\xa1\xc0\x90\x02\x6b\xba\x3d\x0c\x03\x41\x91\x27\x89\xb5\xcc\xd3\x78\x54\x15\xaf\xee\x7f\x1f\x28\x4a\x96\xec\x28\x76\xba\x01\xc9\xb0\x06\x08\x02\xf2\xc8\x3b\xdd\x7d\xdf\xdd\x91\x74\x92\xb0\xef\x56\x3a\xb7\xc2\x01\xfb\x50\xcd\xde\x5e\xbf\x7f\xf3\xcb\x0d\x7b\x7b\x7d\xf3\x8e\x15\x6b\x65\x05\x97\xa5\x06\xe3\xd8\x89\x56\x31\x13\x65\x89\x0d\x28\x2e\xd1\x12\x47\xab\x73\x6d\x28\x66\x61\x07\x37\x62\x05\xdb\x09\x81\xb4\xe0\x62\x66\x41\x69\x0b\xd2\xf1\xda\x6a\x8a\x59\x6e\x85\x71\xdc\xad\x2b\x20\xbf\x46\x15\x1a\x82\x7e\x4e\x12\x2b\x88\x19\x36\x06\x6c\xcc\x2a\x2c\xb5\x5c\x7b\xbd\x98\x39\xa4\x30\xe8\xac\xb7\xe3\x12\x73\xec\xa4\x68\x9c\x90\x8e\xf6\xbe\xce\xe1\xb6\xd2\x16\x88\x0b\x17\x33\x02\xe9\xd0\x72\xad\xc0\x38\x9d\x69\xb0\x41\xf5\x63\xb3\xa4\xf0\xbf\xff\xd2\x12\x0c\x07\xa3\x2a\xd4\xc6\x71\x51\xbb\x82\xaf\xc0\x15\xa8\xbc\xbf\x7f\xd6\x40\x7d\x28\xfd\x0c\xd3\x8f\x3e\x3e\xd2\xb9\xd1\x26\xe7\xa2\xcc\x63\x56\x13\x58\x6d\x32\x6c\xa5\xa0\xf8\x36\xd2\x76\x95\xea\xa0\xe2\xc3\x8e\x99\xa8\x95\x06\x23\x21\x66\x99\x45\xe3\x64\x21\x8c\x81\x92\xfb\xe8\xea\x2e\xd2\xa9\x05\x02\x22\x8d\x86\x7b\x37\xb4\x05\xe5\x01\x23\xd7\xaf\xee\xc1\x9e\x0a\xb9\x9c\x32\x3c\x21\xdf\xb7\xfb\x6a\xf6\xeb\x8f\x3f\x7f\x78\xf3\x7e\xc6\xd8\x49\x74\x99\x04\x80\xa3\x98\x45\x85\x73\xd5\xd5\x7c\x5e\xa2\x14\x65\x81\xe4\x36\x9d\x20\x47\xcc\x4b\xf0\x3b\x08\x57\x30\x52\x10\xa9\x54\x90\x3d\x4c\xd5\xe3\x8e\x56\xff\x05\x5c\xa2\x82\x8d\x5e\x55\xa5\x96\xba\x35\xd3\x32\xb4\xd1\x8a\xb7\x03\x2f\xc9\x10\x37\xa9\xb0\xad\x1e\x18\x10\x34\xfa\x46\xc8\xa2\x91\xc0\xe1\x78\x79\x22\x9c\x1c\x07\x43\x9b\x0c\xfd\xec\x6c\x58\x0f\x69\xe4\x77\x7c\x7e\xb9\x84\x35\xbd\xbc\x62\xbf\xff\xf1\x65\x64\xc0\xa7\x92\x9f\x1a\x34\x30\x12\xd7\x56\x9f\x6f\x86\xf1\xc2\x2f\x59\x5a\xbc\xbe\x0c\x83\xd7\x8b\x76\x50\xd5\x69\xa9\x65\xaf\x46\x57\xf3\x79\xd3\x34\xa7\x68\xd7\xa7\x54\xcc\x45\xa5\x47\x06\x33\x99\x04\xc6\xe6\x51\xcc\x9c\xad\x61\x58\x6a\xc9\x3f\x9f\x6f\xc6\xd3\xc5\x7c\xa4\x9b\xee\xeb\xbe\xfa\x61\x36\xae\xfc\xd9\x8b\x50\xfa\xe8\x69\x58\xb4\x45\xe0\xab\x46\x0a\xe7\x33\xa3\xcb\x90\xae\x23\x0c\x6b\xa0\x42\xa1\x85\xec\xde\xe6\xcd\x0b\x9f\x36\x25\xe6\xda\x24\x9d\x66\xa2\x55\x14\xb3\xeb\x77\xbf\x9d\xbc\x8a\x59\x74\x99\x50\x9d\x46\x5f\xe5\x41\x57\x7a\xec\x44\x16\xa2\x2c\xc1\xe4\x10\xb3\x4f\x60\xdb\xb2\xde\xf6\x00\xef\x5d\xe7\xcb\xb8\x74\xcb\x98\xd1\x52\x57\x5b\x11\x28\xde\xf5\x1d\x49\x36\x9b\x0a\x68\xd8\xe8\x67\xa8\x95\xe4\xbe\xe1\xc0\xad\x6b\x7b\x90\xde\x22\xd2\x7e\x72\xbc\x9b\xf7\xb5\xbd\x0b\xc6\xd6\xeb\xa8\x0d\xbf\xf7\x3c\xcc\x86\x8c\x6c\x81\xf1\xee\x87\x49\x5f\xd2\x51\xcc\x32\x51\x12\x84\x1d\xde\xf5\x4e\x91\x6c\x36\xc0\xda\xa3\xfb\xf9\x4b\x58\x9d\x20\x20\xba\x4c\x44\xad\x8e\x20\x2f\x7d\xdb\x32\xee\x3f\x04\x79\x86\x56\x7a\x0b\x5d\x13\x1d\x1a\xfa\x14\x1b\x41\x32\xf2\x79\x92\x9e\x98\x09\x69\x9f\x9e\xa3\x10\x59\x5b\x0e\x07\x38\xdb\xf3\xcc\x53\x18\x06\xd2\x7e\x1d\x97\xbc\x10\x46\x95\xa0\x76\x38\x6d\x0f\xe8\x81\x20\x0b\x2b\x58\xa5\x1e\xdb\x7e\xc4\x33\xb4\x31\x03\x6b\xd1\xee\xf3\xd4\x03\x2f\xa4\x04\xa2\xd0\x9f\x07\x69\xdf\xb1\xa7\xf8\x6e\x04\xf1\x9a\xfc\x21\xd6\x7f\xff\xa1\xc5\xd3\x83\x1b\x3a\xe0\xc5\xe5\xd9\x59\x0f\xe8\x2e\xba\x63\xd1\x40\xcd\xf1\xfc\x9f\xee\x3c\x93\xd0\x8d\x32\xff\x20\x68\x42\xde\x41\xee\x10\x22\xf7\xe6\xfb\x61\x5c\xda\x24\xba\x8b\x4a\x74\x7e\x27\xff\x06\x38\x46\x09\x78\x18\x15\x4c\xb3\x9a\x3a\x67\xef\x39\x1c\xb6\x68\xdc\xed\x0d\x23\xf5\xdd\x18\xb6\x99\x3f\x2e\xb0\x61\x73\xeb\x54\x92\xb0\x9b\x42\x13\xf3\x7f\xc6\x67\xb4\x26\xe7\xef\xa7\x4a\x38\xc1\xa8\x02\xa9\x33\x2d\x45\x59\xae\x99\x36\x04\xd6\x81\xf2\x08\x32\x57\x00\x93\x82\x80\x35\x05\x58\x60\x0d\xb0\x42\x7c\x82\x5d\x13\xe4\xfc\x25\x38\x85\x0c\x2d\x30\xb8\x05\x59\x3b\x6d\x72\x16\x6e\xc7\x3e\xa8\xef\x59\x53\x68\x59\x30\xa1\x14\x79\xab\xa0\x73\xc3\x96\xb0\xf6\x17\x50\x72\x56\x68\xe3\xe8\xf4\x9b\x39\xc6\xd2\x6c\x79\xbe\x9f\x76\xad\xec\x11\x9a\xa5\x4e\x14\x26\x06\x5d\x02\xb7\x9a\xdc\xce\x61\xf6\x0d\xc1\xbf\x98\x80\x7f\xb1\x03\xff\x14\x4e\xcf\xb7\x8a\x27\xbb\x55\x3c\x65\xc9\x3c\xec\x7e\x71\x5f\x61\x8d\xaf\x18\xcf\xbc\x4e\xf0\x7a\xbc\x16\x1f\x89\xd7\x29\x06\x8f\xdc\x19\x9f\x09\x9d\x20\xf4\x62\x82\xd0\x8b\xc7\x6c\xae\xcf\xcf\x81\xa3\xcf\x81\x29\x06\xd2\x6c\xf9\x2f\x5f\x05\xde\xc2\xff\xe6\x65\x70\x2f\x44\xff\xe4\x81\xe0\x15\x9f\xfa\x91\x30\x38\x7f\x6f\x6c\x7b\x4f\x86\xd9\xf8\x37\xee\x9f\xb0\x31\xb3\xbf\x03\x00\x00\xff\xff\xbd\x33\x80\xc0\xf5\x16\x00\x00")
func migrationsSqlTests6_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests6_testSql,
"migrations/sql/tests/6_test.sql",
)
}
func migrationsSqlTests6_testSql() (*asset, error) {
bytes, err := migrationsSqlTests6_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/6_test.sql", size: 5877, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests7_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xcd\x8e\x1b\x37\x0c\x3e\xc7\x4f\x21\xe4\x32\xbb\xa8\x1c\xef\x6e\x91\x2c\xb0\x3d\x15\x68\x0e\x01\x8a\x0d\xd0\x24\xed\xa1\x28\x04\x59\xe2\x8c\x15\xcb\xe2\x54\xd4\xd4\x71\xe3\xbc\x7b\x21\x69\x7e\xb4\xde\x89\x93\x9c\x9a\x8b\x21\x92\x22\x45\x7e\xfc\xc8\xf1\x72\xc9\x7e\xd8\x99\xc6\xcb\x00\xec\x5d\xbb\x78\x75\xff\xe6\xe5\x6f\x6f\xd9\xab\xfb\xb7\xaf\xd9\xe6\xa0\xbd\x14\xca\x1a\x70\x81\x5d\x18\xcd\x99\xb4\x16\xf7\xa0\x85\x42\x4f\x02\xbd\x69\x8c\x23\xce\xf2\x0d\xe1\xe4\x0e\x46\x81\x40\x79\x08\x9c\x79\xd0\xc6\x83\x0a\xa2\xf3\x86\x38\x6b\xbc\x74\x41\x84\x43\x0b\x14\x6d\xd4\xa2\x23\x18\x64\x52\xd8\x02\x67\xb8\x77\xe0\x39\x6b\xd1\x1a\x75\x88\x7e\x9c\x05\xa4\x7c\xe8\xa3\xa7\xb3\xc5\x06\x7b\x2d\xba\x20\x55\xa0\x93\xd7\x05\x7c\x68\x8d\x07\x12\x32\x70\x46\xa0\x02\x7a\x61\x34\xb8\x60\x6a\x03\x3e\xbb\xbe\xdf\x6f\x29\xff\x0e\x2f\x6d\xc1\x09\x70\xba\x45\xe3\x82\x90\x5d\xd8\x88\x1d\x84\x0d\xea\x98\xef\xdf\x1d\xd0\x50\xca\x20\xe1\xfa\x7d\xac\x8f\x4c\xe3\x8c\x6b\x84\xb4\x0d\x67\x1d\x81\x37\xae\xc6\xa4\x05\x2d\xc6\x4a\x93\x95\xba\xec\x12\xcb\xe6\x4c\x76\xda\x80\x53\xc0\x59\xed\xd1\x05\xb5\x91\xce\x81\x15\xb1\xba\xae\xaf\x74\xce\x40\x40\x64\xd0\x89\x98\x86\xf1\xa0\x23\x60\x14\x06\xeb\x09\xec\x6b\xa9\xb6\x73\x81\x67\xf4\xa7\x71\x2f\x17\xbf\xff\xfc\xeb\xbb\x97\x6f\x16\x8c\x5d\x54\xb7\xcb\x0c\x70\xc5\x59\xb5\x09\xa1\xbd\x5b\xad\x2c\x2a\x69\x37\x48\xe1\xd8\x2b\x1a\xc4\xc6\x42\xbc\x41\xb8\x83\xc2\x41\xae\x95\x86\xfa\xeb\x5c\x23\xee\xe8\xcd\xbf\x20\x14\x6a\x38\x9a\x5d\x6b\x8d\x32\x29\x4c\xea\xd0\xd1\x68\x91\x0e\x51\x53\x23\x1e\xd7\xd2\x27\x3f\x70\x20\xa9\x78\x23\xb3\xa8\x50\x04\x2c\xcd\x33\xe5\x34\x38\x05\x3a\xd6\x18\xa5\xab\xc9\x9e\x69\x14\x6f\x7c\x7c\xba\x85\x03\x3d\xbd\x63\x7f\xfe\xf5\xa9\x08\x10\xa9\x14\x45\x87\x0e\x0a\x75\xe7\xcd\xf5\x71\x3a\xdf\x44\x93\xa7\x9b\xe7\x2f\xf2\xe1\xf9\x4d\x3a\xb4\xdd\xda\x1a\x35\xb8\xd1\xdd\x6a\xb5\xdf\xef\x9f\xa1\x3f\x3c\xa3\xcd\x4a\xb6\xa6\x08\x58\xab\x65\xee\xd8\xaa\xe2\x2c\xf8\x0e\x26\x53\x6a\xfe\xf5\xea\x58\x8a\x37\xab\xc2\x77\x7d\xea\x7b\xf9\xd3\xa2\x9c\xfc\xc5\x93\x3c\xfa\x18\xdb\x70\x93\x86\x20\x4e\x8d\x92\x21\x32\xa3\x67\x48\xbf\x11\x26\x1b\xe8\x3c\x68\x99\xdd\x23\x6f\x9e\x44\xda\x58\x6c\x8c\x5b\xf6\x9e\x4b\xa3\x2b\xce\xee\x5f\xff\x71\x71\xc9\x59\x75\xbb\xa4\x6e\x5d\x7d\x53\x06\xfd\xe8\xb1\x0b\xb5\x91\xd6\x82\x6b\x80\xb3\x7f\xc0\xa7\xb1\x1e\x77\x40\xcc\xae\xcf\xa5\x1c\x5d\xcb\x19\x6d\x4d\x3b\xaa\x40\x8b\x7e\xef\x28\xf2\xf5\x5c\x41\xd3\xc5\x28\xa1\xd1\x4a\xc4\x85\x03\x1f\x42\xda\x41\x66\x44\x24\x3d\x59\xde\x16\xc3\x6c\x3f\x04\x63\xcc\xba\x4a\xe5\x0f\x99\x67\x69\x62\x64\x02\x26\xa6\x9f\x85\x61\xa4\x2b\xce\x6a\x69\x09\xf2\x8d\x98\x7a\xef\x48\xbe\x9e\x60\x1d\xd0\xfd\xf8\x29\x5b\x67\x1a\x50\xdd\x2e\x65\xa7\xbf\x80\xbc\x8a\x6b\xcb\x85\xef\x08\xf2\x1a\xbd\x8a\x11\xfa\x25\x3a\x2d\xf4\xb9\x6e\x64\x4d\x91\xf3\x6c\x7b\x38\x93\xca\xff\xff\x3d\xca\x95\xa5\x71\x38\xd3\xb3\x93\xcc\x62\x0b\xf3\x41\xf9\x6f\xeb\xa5\xd8\x48\xa7\x2d\xe8\x07\x3d\x4d\x1f\xe8\xa9\x41\x1e\x76\xb0\x5b\x47\x6c\x87\x93\xa8\xd1\x73\x06\xde\xa3\x3f\xed\xd3\x00\xbc\x54\x0a\x88\xf2\x7e\x9e\xb4\xc3\xc6\x9e\xeb\xf7\x5e\x92\xe8\x28\x7e\xc4\x86\xf7\xbf\x76\x78\x06\x70\xf3\x06\xfc\xf1\xc5\xd5\xd5\x00\xe8\x43\x74\x4b\xd5\xd4\x9a\x2f\xf3\x7f\x7e\xf3\xcc\x42\x57\x30\xff\x2c\x68\x52\x3d\x42\xee\x1c\x22\x9f\xe5\xfb\x79\x5c\x12\x89\x1e\xa3\x52\x5d\x3f\xe2\xdf\x04\x47\x41\xc0\xf3\xa8\xe0\xba\xee\xa8\x4f\xf6\x33\x1f\x87\x11\x8d\xc7\xbb\xa1\x70\x7f\x58\xc3\xc8\xfc\x72\xc0\xa6\xcb\x29\xa9\xf2\xff\xea\x2f\xb8\x77\x8b\xff\x02\x00\x00\xff\xff\xcb\xcb\x01\xcc\xc1\x0a\x00\x00")
func migrationsSqlTests7_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests7_testSql,
"migrations/sql/tests/7_test.sql",
)
}
func migrationsSqlTests7_testSql() (*asset, error) {
bytes, err := migrationsSqlTests7_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/7_test.sql", size: 2753, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests8_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x51\x6f\x1b\x37\x0c\x7e\xae\x7f\x85\xe0\x97\x4b\x30\xb9\x4e\x3c\xb4\x08\xb2\xa7\x01\xeb\x43\x81\x21\x05\xd6\x76\x7b\x18\x06\x41\x27\xf1\xce\xaa\xcf\xe2\x4d\xd4\xcd\xf1\xea\xfc\xf7\x41\xd2\x9d\x4f\x76\x6e\x69\xf2\xb4\xbd\x18\x22\x29\x52\xe4\x47\x7e\x3c\x2f\x16\xec\xbb\xad\xa9\x9d\xf4\xc0\x3e\xb7\xb3\xf7\x77\x1f\xdf\xfd\xf2\x89\xbd\xbf\xfb\xf4\x81\xad\xf7\xda\x49\xa1\x1a\x03\xd6\xb3\x0b\xa3\x39\x93\x4d\x83\x3b\xd0\x42\xa1\x23\x81\xce\xd4\xc6\x12\x67\xe9\x86\xb0\x72\x0b\x47\x81\x40\x39\xf0\x9c\x39\xd0\xc6\x81\xf2\xa2\x73\x86\x38\xab\x9d\xb4\x5e\xf8\x7d\x0b\x14\x6c\xd4\xa2\x25\x18\x64\x52\xd8\x02\x67\xb8\xb3\xe0\x38\x6b\xb1\x31\x6a\x1f\xfc\x38\xf3\x48\xe9\xd0\x47\x8f\xe7\x06\x6b\xec\xb5\x68\xbd\x54\x9e\xce\x5e\x17\x70\xdf\x1a\x07\x24\xa4\xe7\x8c\x40\x79\x74\xc2\x68\xb0\xde\x54\x06\x5c\x72\xfd\xb2\xdb\x50\xfa\x1d\x5e\xda\x80\x15\x60\x75\x8b\xc6\x7a\x21\x3b\xbf\x16\x5b\xf0\x6b\xd4\x21\xdf\x3f\x3b\xa0\xa1\x94\x41\xc2\xf2\x4b\xa8\x8f\x4c\x6d\x8d\xad\x85\x6c\x6a\xce\x3a\x02\x67\x6c\x85\x51\x0b\x5a\x1c\x2b\x8d\x56\xea\x92\x4b\x28\x9b\x33\xd9\x69\x03\x56\x01\x67\x95\x43\xeb\xd5\x5a\x5a\x0b\x8d\x08\xd5\x75\x7d\xa5\x53\x06\x02\x22\x83\x56\x84\x34\x8c\x03\x1d\x00\x23\x3f\x58\xcf\x60\x2f\xa5\xda\x4c\x05\x9e\xd0\x9f\xc7\xbd\x9c\xfd\xfa\xe3\xcf\x9f\xdf\x7d\x9c\x31\x76\x51\xdc\x2c\x12\xc0\x05\x67\xc5\xda\xfb\xf6\x76\xb9\x6c\x50\xc9\x66\x8d\xe4\x0f\xbd\xa2\x46\xac\x1b\x08\x37\x08\xb7\x90\x39\xc8\x52\x69\xa8\x9e\xe7\x1a\x70\x47\x67\xfe\x06\xa1\x50\xc3\xc1\x6c\xdb\xc6\x28\x13\xc3\xc4\x0e\x1d\x8c\x16\xf1\x10\x34\x15\xe2\xa1\x94\x2e\xfa\x81\x05\x49\xd9\x1b\x69\x8a\x32\x85\xc7\xdc\x3c\x51\x4e\x8d\x63\xa0\x43\x85\x41\xba\x1a\xed\x69\x8c\xc2\x8d\xaf\xf3\x0d\xec\x69\x7e\xcb\x7e\xff\xe3\x21\x0b\x10\x46\x29\x88\x16\x2d\x64\xea\xce\x99\xeb\xc3\x78\x5e\x05\x93\xa3\xd5\x9b\xb7\xe9\xf0\x66\x15\x0f\x6d\x57\x36\x46\x0d\x6e\x74\xbb\x5c\xee\x76\xbb\xd7\xe8\xf6\xaf\x69\xbd\x94\xad\xc9\x02\x56\x6a\x91\x3a\xb6\x2c\x38\xf3\xae\x83\xd1\x14\x9b\x7f\xbd\x3c\xe4\xe2\x6a\x99\xf9\x96\xe7\xbe\x97\x3f\xcc\x72\xe6\xcf\x5e\x25\xea\x63\x68\xc3\x2a\x92\x20\xb0\x46\x49\x1f\x26\xa3\x9f\x90\x7e\x23\x8c\x36\xd0\x89\x68\x69\xba\x8f\x73\xf3\x2a\x8c\x4d\x83\xb5\xb1\x8b\xde\x73\x61\x74\xc1\xd9\xdd\x87\xdf\x2e\x2e\x39\x2b\x6e\x16\xd4\x95\xc5\x8b\x32\xe8\xa9\xc7\x2e\xd4\x5a\x36\x0d\xd8\x1a\x38\xfb\x0b\x5c\xa4\xf5\x71\x07\x84\xec\xfa\x5c\x72\xea\x36\x9c\xd1\xc6\xb4\x47\x15\x68\xd1\xef\x1d\x45\xae\x9a\x2a\x68\xbc\x18\x24\x34\x5a\x89\xb0\x70\xe0\xde\xc7\x1d\x64\x8e\x88\xc4\x27\xf3\xdb\x62\xe0\xf6\x29\x18\xc7\xac\x8b\x58\xfe\x90\x79\x92\xc6\x89\x8c\xc0\x84\xf4\x93\x30\x50\xba\xe0\xac\x92\x0d\x41\xba\x11\x52\xef\x1d\xc9\x55\x23\xac\x03\xba\x5f\x1f\x92\x75\xa2\x01\xc5\xcd\x42\x76\xfa\x1b\xc8\xab\xb0\xb6\xac\xff\x1f\x41\x5e\xa1\x53\x21\x42\xbf\x44\xc7\x85\x3e\xd5\x8d\xa4\xc9\x72\x9e\x6c\x0f\x67\x52\xb9\xf4\x19\x81\x7b\xff\xdf\x37\x2b\x95\x18\x79\xf1\x44\xf3\xce\x32\x0b\xbd\x4c\x07\xd5\xef\xa7\x0a\x71\x7e\x3b\x2f\xa5\x9b\x3f\xbc\xac\xcb\x62\x2d\xad\x6e\x40\x9f\x74\x3b\x7e\xba\xc7\xd6\x39\xd8\xc2\xb6\x0c\xa8\x0f\x27\x51\xa1\xe3\x0c\x9c\x43\x77\xde\xc1\xa1\x25\x52\x29\x20\x4a\x9b\x7b\xd4\x0e\xbb\x7c\x6a\x12\x76\x92\x44\x47\xe1\xf3\x36\xbc\xff\x5c\x5a\x0d\x68\xa7\xdd\xf8\xfd\xdb\xab\xab\x01\xe1\x53\xb8\x73\xd5\xd8\xab\x6f\x33\x63\x7a\x27\x4d\x42\x97\x71\xe2\x49\xd0\xe2\x14\x9e\x22\xf7\x14\x22\x4f\x30\xe1\x39\xa3\x9c\xc6\xeb\x31\x3c\xc5\xf5\xa3\xc9\x1c\x71\x39\x1d\xcd\x97\xcc\x18\x96\x55\x47\x7d\x19\xff\xf2\x41\x39\xe2\xf4\x78\x9f\x64\xee\xa7\x45\x1d\x49\x92\x73\x71\xbc\x1c\x93\xca\xff\xe3\xfe\x84\x3b\x3b\xfb\x27\x00\x00\xff\xff\xfd\x53\x1b\xd7\xf5\x0a\x00\x00")
func migrationsSqlTests8_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests8_testSql,
"migrations/sql/tests/8_test.sql",
)
}
func migrationsSqlTests8_testSql() (*asset, error) {
bytes, err := migrationsSqlTests8_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/8_test.sql", size: 2805, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _migrationsSqlTests9_testSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5f\x6f\x1b\x37\x0c\x7f\xae\x3f\x85\x90\x97\x4b\x31\xb9\x4e\x32\xb4\x40\xb2\xa7\x01\xeb\x43\x81\x21\x05\xd6\x76\x7b\x18\x06\x41\x27\xf1\xce\xaa\xcf\xe2\x4d\xd4\xcd\xf1\xea\x7c\xf7\x41\xd2\xfd\xb5\x6f\x4e\xf2\xb4\xbd\x24\x14\x29\x4a\xe4\x8f\xe4\x4f\xe7\xe5\x92\x7d\xb7\x35\xa5\x93\x1e\xd8\x97\x7a\xf1\xe1\xfe\xd3\xfb\x5f\x3e\xb3\x0f\xf7\x9f\x3f\xb2\xf5\x5e\x3b\x29\x54\x65\xc0\x7a\x76\x69\x34\x67\xb2\xaa\x70\x07\x5a\x28\x74\x24\xd0\x99\xd2\x58\xe2\x2c\xed\x10\x56\x6e\xa1\x5f\x10\x28\x07\x9e\x33\x07\xda\x38\x50\x5e\x34\xce\x10\x67\xa5\x93\xd6\x0b\xbf\xaf\x81\x82\x8d\x6a\xb4\x04\xdd\x9a\x14\xd6\xc0\x19\xee\x2c\x38\xce\x6a\xac\x8c\xda\x07\x3f\xce\x3c\x52\x12\xda\xd3\xa3\x5c\x61\x89\xad\x16\xad\x97\xca\xd3\xd1\xed\x02\x1e\x6a\xe3\x80\x84\xf4\x9c\x11\x28\x8f\x4e\x18\x0d\xd6\x9b\xc2\x80\x4b\xae\x5f\x77\x1b\x4a\x7f\xbb\x9b\x36\x60\x05\x58\x5d\xa3\xb1\x5e\xc8\xc6\xaf\xc5\x16\xfc\x1a\x75\x88\xf7\xcf\x06\xa8\x4b\xa5\x5b\x61\xfe\x35\xe4\x47\xa6\xb4\xc6\x96\x42\x56\x25\x67\x0d\x81\x33\xb6\xc0\xa8\x05\x2d\xfa\x4c\xa3\x95\x9a\xe4\x12\xd2\xe6\x4c\x36\xda\x80\x55\xc0\x59\xe1\xd0\x7a\xb5\x96\xd6\x42\x25\x42\x76\x4d\x9b\xe9\x9c\x81\x80\xc8\xa0\x15\x21\x0c\xe3\x40\x07\xc0\xc8\x77\xd6\x23\xd8\x73\xa9\x36\x73\x07\xcf\xe8\x8f\xcf\x7d\xbd\xf8\xf5\xc7\x9f\xbf\xbc\xff\xb4\x60\xec\x32\xbb\x5d\x26\x80\x33\xce\xb2\xb5\xf7\xf5\xdd\x6a\x55\xa1\x92\xd5\x1a\xc9\x1f\x5a\x45\x89\x58\x56\x10\x76\x10\x6e\x61\xe4\x20\x73\xa5\xa1\x78\x9e\x6b\xc0\x1d\x9d\xf9\x1b\x84\x42\x0d\x07\xb3\xad\x2b\xa3\x4c\x3c\x26\x56\xe8\x60\xb4\x88\x42\xd0\x14\x88\x87\x5c\xba\xe8\x07\x16\x24\x8d\xee\x48\x5d\x34\x52\x78\x1c\x9b\x67\xd2\x29\x71\x38\xe8\x50\x60\x58\x5d\x0d\xf6\xd4\x46\x61\xc7\xb7\x8b\x0d\xec\xe9\xe2\x8e\xfd\xfe\xc7\xe3\xe8\x80\xd0\x4a\x61\x69\xd1\xc2\x48\xdd\x38\x73\x7d\x18\xe4\x9b\x60\x72\x74\xf3\xf6\x5d\x12\xde\xde\x44\xa1\x6e\xf2\xca\xa8\xce\x8d\xee\x56\xab\xdd\x6e\xf7\x06\xdd\xfe\x0d\xad\x57\xb2\x36\xa3\x03\x0b\xb5\x4c\x15\x5b\x65\x9c\x79\xd7\xc0\x60\x8a\xc5\xbf\x5e\x1d\xc6\xcb\x9b\xd5\xc8\x37\x3f\xf6\x7d\xfd\xc3\x62\x3c\xf9\x8b\x57\x69\xf4\x31\x94\xe1\x26\x0e\x41\x98\x1a\x25\x7d\xe8\x8c\xb6\x43\x5a\x46\x18\x6c\xa0\xd3\xa0\xa5\xee\xee\xfb\xe6\x55\x68\x9b\x0a\x4b\x63\x97\xad\xe7\xd2\xe8\x8c\xb3\xfb\x8f\xbf\x5d\xbe\xe6\x2c\xbb\x5d\x52\x93\x67\x2f\x8a\xa0\x1d\x3d\x76\xa9\xd6\xb2\xaa\xc0\x96\xc0\xd9\x5f\xe0\xe2\x58\xf7\x1c\x10\xa2\x6b\x63\x19\x8f\x6e\xc5\x19\x6d\x4c\xdd\xab\x40\x8b\x96\x77\x14\xb9\x62\x2e\xa1\x61\x63\x58\xa1\xd1\x4a\x04\xc2\x81\x07\x1f\x39\xc8\xf4\x88\xc4\x2b\xc7\xbb\x45\x37\xdb\x53\x30\xfa\xa8\xb3\x98\x7e\x17\x79\x5a\x0d\x1d\x19\x81\x09\xe1\xa7\x45\x37\xd2\x19\x67\x85\xac\x08\xd2\x8e\x10\x7a\xeb\x48\xae\x18\x60\xed\xd0\xfd\xf6\x98\xac\x33\x05\xc8\x6e\x97\xb2\xd1\x4f\x20\xaf\x02\x6d\x59\xff\x3f\x82\xbc\x40\xa7\xc2\x09\x2d\x89\x0e\x84\x3e\x57\x8d\xa4\x19\xc5\x3c\x5b\x1e\xce\xa4\x72\xe9\x19\x81\x07\xff\xdf\x17\x2b\xa5\x18\xe7\xe2\x4c\xf1\x8e\x22\x0b\xb5\x4c\x82\x6a\xf9\xa9\x40\xbc\xb8\xbb\xc8\xa5\xbb\x78\x7c\x59\x95\xc5\x5a\x5a\x5d\x81\x9e\x54\x3b\x3e\xdd\x43\xe9\x1c\x6c\x61\x9b\x07\xd4\x3b\x49\x14\xe8\x38\x03\xe7\xd0\x1d\x57\xb0\x2b\x89\x54\x0a\x88\x12\x73\x0f\xda\x8e\xcb\xe7\x3a\x61\x27\x49\x34\x14\x9e\xb7\xee\xfe\xe7\x8e\x55\x87\x76\xe2\xc6\xef\xdf\x5d\x5d\x75\x08\x4f\xe1\x1e\xab\x86\x5a\x3d\x3d\x19\xf3\x9c\x34\x0b\xdd\x68\x26\xce\x82\x16\xbb\x70\x8a\xdc\x39\x44\xce\x4c\xc2\x73\x5a\x39\xb5\xd7\x29\x3c\xd9\xf5\x49\x67\x0e\xb8\x4c\x5b\xf3\x25\x3d\x86\x79\xd1\x50\x9b\xc6\xbf\x3c\x28\x3d\x4e\xa7\x7c\x32\x72\x9f\x26\xd5\x0f\xc9\x78\x16\x87\xcd\x4f\x04\xd5\x7f\x2e\x9d\x63\xb7\x3e\x2c\x0a\x01\x8d\x62\x9b\x50\x5c\x1c\xf9\x24\x0e\x25\x0a\x0d\x5f\x7b\x88\x7b\xc3\x19\x51\xaa\x85\xb1\xc6\x9b\xd3\x5c\xce\x72\xcd\x84\x5f\x4e\xb8\x60\xf2\x1d\x43\xf1\xd5\x8f\xb1\x2d\x1b\x57\xad\xa6\xfa\xc4\x4c\xc1\x30\xb0\xd3\xcc\xbf\x00\xdc\xf8\xc7\xc1\x4f\xb8\xb3\x8b\x7f\x02\x00\x00\xff\xff\x2a\x27\xf4\x03\x2e\x0c\x00\x00")
func migrationsSqlTests9_testSqlBytes() ([]byte, error) {
return bindataRead(
_migrationsSqlTests9_testSql,
"migrations/sql/tests/9_test.sql",
)
}
func migrationsSqlTests9_testSql() (*asset, error) {
bytes, err := migrationsSqlTests9_testSqlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "migrations/sql/tests/9_test.sql", size: 3118, mode: os.FileMode(420), modTime: time.Unix(1557684956, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
// Asset loads and returns the asset for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func Asset(name string) ([]byte, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
}
return a.bytes, nil
}
return nil, fmt.Errorf("Asset %s not found", name)
}
// MustAsset is like Asset but panics when Asset would return an error.
// It simplifies safe initialization of global variables.
func MustAsset(name string) []byte {
a, err := Asset(name)
if err != nil {
panic("asset: Asset(" + name + "): " + err.Error())
}
return a
}
// AssetInfo loads and returns the asset info for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func AssetInfo(name string) (os.FileInfo, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
}
return a.info, nil
}
return nil, fmt.Errorf("AssetInfo %s not found", name)
}
// AssetNames returns the names of the assets.
func AssetNames() []string {
names := make([]string, 0, len(_bindata))
for name := range _bindata {
names = append(names, name)
}
return names
}
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
"migrations/sql/cockroach/12.sql": migrationsSqlCockroach12Sql,
"migrations/sql/mysql/.gitkeep": migrationsSqlMysqlGitkeep,
"migrations/sql/mysql/10.sql": migrationsSqlMysql10Sql,
"migrations/sql/mysql/12.sql": migrationsSqlMysql12Sql,
"migrations/sql/mysql/4.sql": migrationsSqlMysql4Sql,
"migrations/sql/mysql/5.sql": migrationsSqlMysql5Sql,
"migrations/sql/mysql/6.sql": migrationsSqlMysql6Sql,
"migrations/sql/mysql/7.sql": migrationsSqlMysql7Sql,
"migrations/sql/mysql/8.sql": migrationsSqlMysql8Sql,
"migrations/sql/postgres/.gitkeep": migrationsSqlPostgresGitkeep,
"migrations/sql/postgres/10.sql": migrationsSqlPostgres10Sql,
"migrations/sql/postgres/12.sql": migrationsSqlPostgres12Sql,
"migrations/sql/postgres/4.sql": migrationsSqlPostgres4Sql,
"migrations/sql/postgres/5.sql": migrationsSqlPostgres5Sql,
"migrations/sql/postgres/6.sql": migrationsSqlPostgres6Sql,
"migrations/sql/postgres/7.sql": migrationsSqlPostgres7Sql,
"migrations/sql/postgres/8.sql": migrationsSqlPostgres8Sql,
"migrations/sql/shared/.gitkeep": migrationsSqlSharedGitkeep,
"migrations/sql/shared/1.sql": migrationsSqlShared1Sql,
"migrations/sql/shared/11.sql": migrationsSqlShared11Sql,
"migrations/sql/shared/2.sql": migrationsSqlShared2Sql,
"migrations/sql/shared/3.sql": migrationsSqlShared3Sql,
"migrations/sql/shared/9.sql": migrationsSqlShared9Sql,
"migrations/sql/tests/.gitkeep": migrationsSqlTestsGitkeep,
"migrations/sql/tests/10_test.sql": migrationsSqlTests10_testSql,
"migrations/sql/tests/11_test.sql": migrationsSqlTests11_testSql,
"migrations/sql/tests/12_test.sql": migrationsSqlTests12_testSql,
"migrations/sql/tests/1_test.sql": migrationsSqlTests1_testSql,
"migrations/sql/tests/2_test.sql": migrationsSqlTests2_testSql,
"migrations/sql/tests/3_test.sql": migrationsSqlTests3_testSql,
"migrations/sql/tests/4_test.sql": migrationsSqlTests4_testSql,
"migrations/sql/tests/5_test.sql": migrationsSqlTests5_testSql,
"migrations/sql/tests/6_test.sql": migrationsSqlTests6_testSql,
"migrations/sql/tests/7_test.sql": migrationsSqlTests7_testSql,
"migrations/sql/tests/8_test.sql": migrationsSqlTests8_testSql,
"migrations/sql/tests/9_test.sql": migrationsSqlTests9_testSql,
}
// AssetDir returns the file names below a certain
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
// following hierarchy:
// data/
// foo.txt
// img/
// a.png
// b.png
// then AssetDir("data") would return []string{"foo.txt", "img"}
// AssetDir("data/img") would return []string{"a.png", "b.png"}
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
// AssetDir("") will return []string{"data"}.
func AssetDir(name string) ([]string, error) {
node := _bintree
if len(name) != 0 {
cannonicalName := strings.Replace(name, "\\", "/", -1)
pathList := strings.Split(cannonicalName, "/")
for _, p := range pathList {
node = node.Children[p]
if node == nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
}
}
if node.Func != nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
rv := make([]string, 0, len(node.Children))
for childName := range node.Children {
rv = append(rv, childName)
}
return rv, nil
}
type bintree struct {
Func func() (*asset, error)
Children map[string]*bintree
}
var _bintree = &bintree{nil, map[string]*bintree{
"migrations": &bintree{nil, map[string]*bintree{
"sql": &bintree{nil, map[string]*bintree{
"cockroach": &bintree{nil, map[string]*bintree{
"12.sql": &bintree{migrationsSqlCockroach12Sql, map[string]*bintree{}},
}},
"mysql": &bintree{nil, map[string]*bintree{
".gitkeep": &bintree{migrationsSqlMysqlGitkeep, map[string]*bintree{}},
"10.sql": &bintree{migrationsSqlMysql10Sql, map[string]*bintree{}},
"12.sql": &bintree{migrationsSqlMysql12Sql, map[string]*bintree{}},
"4.sql": &bintree{migrationsSqlMysql4Sql, map[string]*bintree{}},
"5.sql": &bintree{migrationsSqlMysql5Sql, map[string]*bintree{}},
"6.sql": &bintree{migrationsSqlMysql6Sql, map[string]*bintree{}},
"7.sql": &bintree{migrationsSqlMysql7Sql, map[string]*bintree{}},
"8.sql": &bintree{migrationsSqlMysql8Sql, map[string]*bintree{}},
}},
"postgres": &bintree{nil, map[string]*bintree{
".gitkeep": &bintree{migrationsSqlPostgresGitkeep, map[string]*bintree{}},
"10.sql": &bintree{migrationsSqlPostgres10Sql, map[string]*bintree{}},
"12.sql": &bintree{migrationsSqlPostgres12Sql, map[string]*bintree{}},
"4.sql": &bintree{migrationsSqlPostgres4Sql, map[string]*bintree{}},
"5.sql": &bintree{migrationsSqlPostgres5Sql, map[string]*bintree{}},
"6.sql": &bintree{migrationsSqlPostgres6Sql, map[string]*bintree{}},
"7.sql": &bintree{migrationsSqlPostgres7Sql, map[string]*bintree{}},
"8.sql": &bintree{migrationsSqlPostgres8Sql, map[string]*bintree{}},
}},
"shared": &bintree{nil, map[string]*bintree{
".gitkeep": &bintree{migrationsSqlSharedGitkeep, map[string]*bintree{}},
"1.sql": &bintree{migrationsSqlShared1Sql, map[string]*bintree{}},
"11.sql": &bintree{migrationsSqlShared11Sql, map[string]*bintree{}},
"2.sql": &bintree{migrationsSqlShared2Sql, map[string]*bintree{}},
"3.sql": &bintree{migrationsSqlShared3Sql, map[string]*bintree{}},
"9.sql": &bintree{migrationsSqlShared9Sql, map[string]*bintree{}},
}},
"tests": &bintree{nil, map[string]*bintree{
".gitkeep": &bintree{migrationsSqlTestsGitkeep, map[string]*bintree{}},