|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 1.8.0 - 26-Nov-2020 |
| 4 | + |
| 5 | +- Reworked handling of signed autoincrement integers and |
| 6 | + unsigned floating-point types (#36, thanks @nick15marketing) |
| 7 | +- Adds support for SET columns |
| 8 | +- Adds support for NUMERIC and FIXED columns (exported as `->decimal()`), |
| 9 | + and DOUBLE PRECISION and REAL columns (exported as `->double()`) |
| 10 | +- Table columns are now ordered in the migration the same way |
| 11 | + they are in the database |
| 12 | + |
| 13 | + |
3 | 14 | ## 1.7.0 - 09-Mar-2020 |
4 | 15 |
|
5 | 16 | - Adds support for timestamp columns with `ON UPDATE CURRENT_TIMESTAMP` |
6 | | -- suppresses `->characterSet()` and `->collation()` on text columns |
| 17 | +- Suppresses `->characterSet()` and `->collation()` on text columns |
7 | 18 | that share the table's default character set and/or collation |
8 | | -- removes some extra blank lines from the resulting migration file |
9 | | -- a bit of code cleanup |
| 19 | +- Removes some extra blank lines from the resulting migration file |
| 20 | +- A bit of code cleanup |
10 | 21 |
|
11 | 22 |
|
12 | 23 | ## 1.6.0 - 20-Jan-2020 |
|
25 | 36 |
|
26 | 37 | ## 1.4.1 - 24-Nov-2017 |
27 | 38 |
|
28 | | -- Real fix for handling FULLTEXT indices. |
| 39 | +- Real fix for handling FULLTEXT indices |
29 | 40 |
|
30 | 41 |
|
31 | 42 | ## 1.4.0 - 21-Nov-2017 |
32 | 43 |
|
33 | | -- Broken fix for FULLTEXT (version deleted). |
| 44 | +- Broken fix for FULLTEXT (version deleted) |
34 | 45 |
|
35 | 46 |
|
36 | 47 | ## 1.3.1 - 01-Nov-2017 |
37 | 48 |
|
38 | | -- Fix for ENUM handling and default values. |
| 49 | +- Fix for ENUM handling and default values |
39 | 50 |
|
40 | 51 |
|
41 | 52 | ## 1.3.0 - 16-Oct-2017 |
42 | 53 |
|
43 | | -- Check that `REFERENTIAL_CONSTRAINTS` table exists before using it; should make bundle work with MySQL 5.1. |
| 54 | +- Check that `REFERENTIAL_CONSTRAINTS` table exists before using it; |
| 55 | + should make bundle work with MySQL 5.1 |
44 | 56 |
|
45 | 57 |
|
46 | 58 | ## 1.2.0 - 14-Jul-2017 |
47 | 59 |
|
48 | | -- Fix for listing indices when the table name is a reserved word. |
49 | | -- Nicer output (with clickable links to generated files). |
50 | | -- Parsing script moved into separate bash file, rather than stored in the plist (easier to maintain). |
| 60 | +- Fix for listing indices when the table name is a reserved word |
| 61 | +- Nicer output (with clickable links to generated files) |
| 62 | +- Parsing script moved into separate bash file, rather than stored |
| 63 | + in the plist (easier to maintain) |
51 | 64 |
|
52 | 65 |
|
53 | 66 | ## 1.1.0 - 17-May-2017 |
54 | 67 |
|
55 | | -- Added support for `tinytext()` columns. |
56 | | -- Migrations are now saved to `~/Desktop/SequelProLaravelExport/` instead of directly on the desktop. |
| 68 | +- Added support for `tinytext()` columns |
| 69 | +- Migrations are now saved to `~/Desktop/SequelProLaravelExport/` |
| 70 | + instead of directly on the desktop |
57 | 71 |
|
58 | 72 |
|
59 | 73 | ## 1.0.2 - 18-Nov-2016 |
60 | 74 |
|
61 | | -- Fix for when there is more than one databases with the same table name(s). |
| 75 | +- Fix for when there is more than one database with the same table name(s) |
62 | 76 |
|
63 | 77 |
|
64 | 78 | ## 1.0.1 - 16-Nov-2016 |
65 | 79 |
|
66 | | -- Added support for `comment()`. |
| 80 | +- Added support for `comment()` |
67 | 81 |
|
68 | 82 |
|
69 | 83 | ## 1.0.0 - 18-Oct-2016 |
70 | 84 |
|
71 | | -- First stable release. |
72 | | -- Added support for exporting multiple tables. |
73 | | -- Fix primary keys using multiple columns. |
74 | | -- Better handling of default values for numeric and boolean columns. |
| 85 | +- First stable release |
| 86 | +- Added support for exporting multiple tables |
| 87 | +- Fix primary keys using multiple columns |
| 88 | +- Better handling of default values for numeric and boolean columns |
75 | 89 |
|
76 | 90 |
|
77 | 91 | ## 1.0-beta.3 - 17-Oct-2016 |
78 | 92 |
|
79 | | -- Added support for `json` columns. |
80 | | -- Fixed `enum` column output. |
81 | | -- Fixed `unsignedIncrements()` bug. |
82 | | -- Bug fixes. |
| 93 | +- Added support for `json` columns |
| 94 | +- Fixed `enum` column output |
| 95 | +- Fixed `unsignedIncrements()` bug |
| 96 | +- Bug fixes |
| 97 | + |
83 | 98 |
|
84 | 99 | ## 1.0-beta.2 - 13-Oct-2016 |
85 | 100 |
|
86 | | -- Better foreign key handling (cascade, etc.). |
87 | | -- Bug fixes. |
| 101 | +- Better foreign key handling (cascade, etc.) |
| 102 | +- Bug fixes |
| 103 | + |
88 | 104 |
|
89 | 105 | ## 1.0-beta - 06-Oct-2016 |
90 | 106 |
|
91 | 107 | ## 1.0-alpha.2 - 05-Oct-2016 |
92 | 108 |
|
93 | 109 | ## 1.0-alpha - 05-Oct-2016 |
94 | 110 |
|
95 | | -- Initial release. |
| 111 | +- Initial release |
0 commit comments