ridgepole 0.8.12 → 0.9.0.beta
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +3 -1
- data/Appraisals +4 -5
- data/README.md +17 -17
- data/bin/ridgepole +13 -1
- data/gemfiles/{activerecord_5.0.gemfile → activerecord_6.1.gemfile} +1 -2
- data/lib/ridgepole/client.rb +8 -3
- data/lib/ridgepole/default_limit.rb +1 -1
- data/lib/ridgepole/delta.rb +16 -1
- data/lib/ridgepole/diff.rb +43 -20
- data/lib/ridgepole/dsl_parser/table_definition.rb +44 -41
- data/lib/ridgepole/execute_expander.rb +10 -1
- data/lib/ridgepole/ext/abstract_adapter/disable_table_options.rb +9 -1
- data/lib/ridgepole/external_sql_executer.rb +12 -1
- data/lib/ridgepole/version.rb +1 -1
- data/ridgepole.gemspec +4 -2
- data/spec/erb_helper.rb +5 -1
- data/spec/mysql/_migrate/migrate_change_table_option_spec.rb +2 -2
- data/spec/mysql/cli/ridgepole_spec.rb +35 -1
- data/spec/mysql/collation/collation_spec.rb +7 -7
- data/spec/mysql/dump/dump_class_method_spec.rb +3 -3
- data/spec/mysql/dump/dump_spec.rb +3 -3
- data/spec/mysql/dump/dump_unknown_column_type_spec.rb +1 -1
- data/spec/mysql/dump/dump_without_table_options_spec.rb +2 -2
- data/spec/mysql/fk/migrate_create_fk_spec.rb +7 -7
- data/spec/mysql/migrate/migrate_add_column_with_alter_extra_spec.rb +88 -0
- data/spec/mysql/migrate/migrate_change_column8_spec.rb +38 -5
- data/spec/mysql/migrate/migrate_change_index_spec.rb +7 -1
- data/spec/mysql/migrate/migrate_check_relation_column_type_spec.rb +4 -4
- data/spec/mysql/migrate/migrate_primary_key_spec.rb +30 -5
- data/spec/mysql/migrate/migrate_same_spec.rb +3 -3
- data/spec/mysql/text_blob_types/text_blob_types_spec.rb +1 -1
- data/spec/postgresql/dump/dump_spec.rb +1 -1
- data/spec/postgresql/migrate/migrate_add_column_spec.rb +11 -4
- data/spec/postgresql/migrate/migrate_change_column_spec.rb +4 -0
- data/spec/postgresql/migrate/migrate_drop_column_spec.rb +11 -4
- data/spec/postgresql/migrate/migrate_same_spec.rb +1 -1
- metadata +40 -17
- data/lib/ridgepole/ext/abstract_mysql_adapter/use_alter_index.rb +0 -31
- data/spec/mysql/migrate_/migrate_create_index_with_alter_spec.rb +0 -141
- data/spec/mysql/migrate_/migrate_drop_index_with_alter_spec.rb +0 -141
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df81adabc9afddf2d409c647190e217dd71a3948b8d3b9c3753f36c8519df701
|
4
|
+
data.tar.gz: 3df1478fbdaa3ef5ac2ac192cf1a022901753f1f4adac72f20b93f17b49dcb2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae3fa69120a6ba5103f512092694abd151073ae3e7ed27c23677aa9f617b4a986565c29e6088fbb0f4ae1a0da0cfc425b5c67c8e8b1b19b956164dd8c7fcdf87
|
7
|
+
data.tar.gz: bce34561a3ac8489bbc3466e7d63fd0c4c4a557659e28751bfc06fe3f058d3725493c34426cab2a1171ea86e1e35d4fdde8be3b1e31186599a73748a3a2563a3
|
data/.github/workflows/test.yml
CHANGED
@@ -20,13 +20,15 @@ jobs:
|
|
20
20
|
- MYSQL57=1
|
21
21
|
- POSTGRESQL=1
|
22
22
|
gemfile:
|
23
|
-
- gemfiles/activerecord_5.0.gemfile
|
24
23
|
- gemfiles/activerecord_5.1.gemfile
|
25
24
|
- gemfiles/activerecord_5.2.gemfile
|
26
25
|
- gemfiles/activerecord_6.0.gemfile
|
26
|
+
- gemfiles/activerecord_6.1.gemfile
|
27
27
|
exclude:
|
28
28
|
- ruby: 2.4
|
29
29
|
gemfile: gemfiles/activerecord_6.0.gemfile
|
30
|
+
- ruby: 2.4
|
31
|
+
gemfile: gemfiles/activerecord_6.1.gemfile
|
30
32
|
|
31
33
|
steps:
|
32
34
|
- uses: actions/checkout@v2
|
data/Appraisals
CHANGED
@@ -1,10 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
appraise 'activerecord-5.0' do
|
4
|
-
gem 'activerecord', '~> 5.0.1'
|
5
|
-
gem 'pg', '< 1.0.0'
|
6
|
-
end
|
7
|
-
|
8
3
|
appraise 'activerecord-5.1' do
|
9
4
|
gem 'activerecord', '~> 5.1.0'
|
10
5
|
end
|
@@ -17,3 +12,7 @@ end
|
|
17
12
|
appraise 'activerecord-6.0' do
|
18
13
|
gem 'activerecord', '~> 6.0.0'
|
19
14
|
end
|
15
|
+
|
16
|
+
appraise 'activerecord-6.1' do
|
17
|
+
gem 'activerecord', '~> 6.1.0'
|
18
|
+
end
|
data/README.md
CHANGED
@@ -6,8 +6,8 @@ It defines DB schema using [Rails DSL](http://guides.rubyonrails.org/migrations.
|
|
6
6
|
(like Chef/Puppet)
|
7
7
|
|
8
8
|
[![Gem Version](https://badge.fury.io/rb/ridgepole.svg)](http://badge.fury.io/rb/ridgepole)
|
9
|
-
[![Build Status](https://github.com/winebarrel/ridgepole/workflows/test/badge.svg?branch=0.
|
10
|
-
[![Coverage Status](https://coveralls.io/repos/github/winebarrel/ridgepole/badge.svg?branch=0.
|
9
|
+
[![Build Status](https://github.com/winebarrel/ridgepole/workflows/test/badge.svg?branch=0.9)](https://github.com/winebarrel/ridgepole/actions)
|
10
|
+
[![Coverage Status](https://coveralls.io/repos/github/winebarrel/ridgepole/badge.svg?branch=0.9)](https://coveralls.io/github/winebarrel/ridgepole?branch=0.8)
|
11
11
|
|
12
12
|
<details><summary>ChangeLog</summary>
|
13
13
|
|
@@ -127,8 +127,22 @@ It defines DB schema using [Rails DSL](http://guides.rubyonrails.org/migrations.
|
|
127
127
|
* Support t.reference() foreign_key option ([pull#316](https://github.com/winebarrel/ridgepole/pull/316))
|
128
128
|
* `>= 0.8.12`
|
129
129
|
* Pluralize column specified by `references` ([pull#317](https://github.com/winebarrel/ridgepole/pull/317))
|
130
|
+
* `>= 0.9.0`
|
131
|
+
* Remove `--mysql-alter-index` option ([pull#330](https://github.com/winebarrel/ridgepole/pull/330))
|
132
|
+
* Add `--table-hash-options` option ([pull#331](https://github.com/winebarrel/ridgepole/pull/331))
|
133
|
+
* Support Rails 6.1 ([pull#323](https://github.com/winebarrel/ridgepole/pull/323))
|
134
|
+
* Disable Rails 5.0 support([pull#335](https://github.com/winebarrel/ridgepole/pull/335))
|
135
|
+
* Fix PK AUTO_INCREMENT change bug([pull#334](https://github.com/winebarrel/ridgepole/pull/334))
|
130
136
|
</details>
|
131
137
|
|
138
|
+
**Notice**
|
139
|
+
|
140
|
+
ActiveRecord 6.1 is supported in ridgepole v0.9, but the ActiveRecord dump has been changed, so there is a difference between ActiveRecord 5.x/6.0 format.
|
141
|
+
|
142
|
+
**If you use ActiveRecord 6.1, please modify Schemafile format**.
|
143
|
+
|
144
|
+
cf. https://github.com/winebarrel/ridgepole/pull/323
|
145
|
+
|
132
146
|
## Installation
|
133
147
|
|
134
148
|
Add this line to your application's Gemfile:
|
@@ -174,6 +188,7 @@ Usage: ridgepole [options]
|
|
174
188
|
-f, --file SCHEMAFILE
|
175
189
|
--dry-run
|
176
190
|
--table-options OPTIONS
|
191
|
+
--table-hash-options OPTIONS
|
177
192
|
--alter-extra ALTER_SPEC
|
178
193
|
--external-script SCRIPT
|
179
194
|
--bulk-change
|
@@ -194,7 +209,6 @@ Usage: ridgepole [options]
|
|
194
209
|
-o, --output SCHEMAFILE
|
195
210
|
-t, --tables TABLES
|
196
211
|
--ignore-tables REGEX_LIST
|
197
|
-
--mysql-use-alter
|
198
212
|
--dump-without-table-options
|
199
213
|
--dump-with-default-fk-name
|
200
214
|
--index-removed-drop-column
|
@@ -404,20 +418,6 @@ Apply `Schemafile`
|
|
404
418
|
-> 0.0471s
|
405
419
|
```
|
406
420
|
|
407
|
-
## Use ALTER instead of CREATE/DROP INDEX
|
408
|
-
|
409
|
-
```sh
|
410
|
-
$ ridgepole -a -c database.yml --mysql-use-alter --debug
|
411
|
-
Apply `Schemafile`
|
412
|
-
...
|
413
|
-
-- remove_index("dept_manager", {:name=>"emp_no"})
|
414
|
-
(19.2ms) ALTER TABLE `dept_manager` DROP INDEX `emp_no`
|
415
|
-
-> 0.0200s
|
416
|
-
-- add_index("dept_manager", ["emp_no"], {:name=>"emp_no2", :using=>:btree})
|
417
|
-
(23.4ms) ALTER TABLE `dept_manager` ADD INDEX `emp_no2` USING btree (`emp_no`)
|
418
|
-
-> 0.0243s
|
419
|
-
```
|
420
|
-
|
421
421
|
## Relation column type check
|
422
422
|
|
423
423
|
```ruby
|
data/bin/ridgepole
CHANGED
@@ -86,6 +86,19 @@ ARGV.options do |opt|
|
|
86
86
|
opt.on('-f', '--file SCHEMAFILE') { |v| file = v }
|
87
87
|
opt.on('', '--dry-run') { options[:dry_run] = true }
|
88
88
|
opt.on('', '--table-options OPTIONS') { |v| options[:table_options] = v }
|
89
|
+
opt.on('', '--table-hash-options OPTIONS') do |v|
|
90
|
+
# NOTE: Ruby2.4 doesn't support `symbolize_names: true`
|
91
|
+
hash = YAML.safe_load(v).deep_symbolize_keys
|
92
|
+
|
93
|
+
case hash[:id]
|
94
|
+
when String
|
95
|
+
hash[:id] = hash[:id].to_sym
|
96
|
+
when Hash
|
97
|
+
hash[:id][:type] = hash[:id][:type].to_sym if hash[:id][:type]
|
98
|
+
end
|
99
|
+
|
100
|
+
options[:table_hash_options] = hash
|
101
|
+
end
|
89
102
|
opt.on('', '--alter-extra ALTER_SPEC') { |v| options[:alter_extra] = v }
|
90
103
|
opt.on('', '--external-script SCRIPT') { |v| options[:external_script] = v }
|
91
104
|
opt.on('', '--bulk-change') do
|
@@ -121,7 +134,6 @@ ARGV.options do |opt|
|
|
121
134
|
opt.on('-o', '--output SCHEMAFILE') { |v| output_file = v }
|
122
135
|
opt.on('-t', '--tables TABLES', Array) { |v| options[:tables] = v }
|
123
136
|
opt.on('', '--ignore-tables REGEX_LIST', Array) { |v| options[:ignore_tables] = v.map { |i| Regexp.new(i) } }
|
124
|
-
opt.on('', '--mysql-use-alter') { options[:mysql_use_alter] = true }
|
125
137
|
opt.on('', '--dump-without-table-options') { options[:dump_without_table_options] = true }
|
126
138
|
opt.on('', '--dump-with-default-fk-name') { options[:dump_with_default_fk_name] = true }
|
127
139
|
opt.on('', '--index-removed-drop-column') { options[:index_removed_drop_column] = true }
|
data/lib/ridgepole/client.rb
CHANGED
@@ -15,8 +15,6 @@ module Ridgepole
|
|
15
15
|
@parser = Ridgepole::DSLParser.new(@options)
|
16
16
|
@diff = Ridgepole::Diff.new(@options)
|
17
17
|
|
18
|
-
require 'ridgepole/ext/abstract_mysql_adapter/use_alter_index' if @options[:mysql_use_alter]
|
19
|
-
|
20
18
|
require 'ridgepole/ext/abstract_mysql_adapter/dump_auto_increment' if @options[:mysql_dump_auto_increment]
|
21
19
|
end
|
22
20
|
|
@@ -32,7 +30,7 @@ module Ridgepole
|
|
32
30
|
logger.verbose_info('# Parse DSL')
|
33
31
|
expected_definition, expected_execute = @parser.parse(dsl, opts)
|
34
32
|
expected_definition.each do |_table, definition|
|
35
|
-
definition
|
33
|
+
merge_table_options(definition)
|
36
34
|
end
|
37
35
|
logger.verbose_info('# Load tables')
|
38
36
|
current_definition, _current_execute = @parser.parse(@dumper.dump, opts)
|
@@ -40,6 +38,13 @@ module Ridgepole
|
|
40
38
|
@diff.diff(current_definition, expected_definition, execute: expected_execute)
|
41
39
|
end
|
42
40
|
|
41
|
+
private
|
42
|
+
|
43
|
+
def merge_table_options(definition)
|
44
|
+
definition[:options].reverse_merge!(@options[:table_hash_options]) if @options[:table_hash_options]
|
45
|
+
definition[:options][:options] ||= @options[:table_options] if @options[:table_options]
|
46
|
+
end
|
47
|
+
|
43
48
|
class << self
|
44
49
|
def diff(dsl_or_config1, dsl_or_config2, options = {})
|
45
50
|
logger = Ridgepole::Logger.instance
|
data/lib/ridgepole/delta.rb
CHANGED
@@ -292,6 +292,19 @@ execute "ALTER TABLE #{ActiveRecord::Base.connection.quote_table_name(table_name
|
|
292
292
|
buf.puts
|
293
293
|
end
|
294
294
|
|
295
|
+
def append_change_table_raw_options(table_name, raw_table_options, table_charset, table_collation, buf)
|
296
|
+
if raw_table_options.blank? && ActiveRecord.gem_version >= Gem::Version.new('6.1.0')
|
297
|
+
# Implicit engine is InnoDB in 6.1.0
|
298
|
+
# related: https://github.com/rails/rails/pull/39365/files#diff-868f1dccfcbed26a288bf9f3fd8a39c863a4413ab0075e12b6805d9798f556d1R441
|
299
|
+
raw_table_options = +'ENGINE=InnoDB'
|
300
|
+
end
|
301
|
+
|
302
|
+
raw_table_options << " DEFAULT CHARSET=#{table_charset}" if table_charset
|
303
|
+
raw_table_options << " COLLATE=#{table_collation}" if table_collation
|
304
|
+
|
305
|
+
append_change_table_options(table_name, raw_table_options, buf)
|
306
|
+
end
|
307
|
+
|
295
308
|
def append_change_table_comment(table_name, table_comment, buf)
|
296
309
|
comment_literal = "COMMENT=#{ActiveRecord::Base.connection.quote(table_comment)}"
|
297
310
|
append_change_table_options(table_name, comment_literal, buf)
|
@@ -303,6 +316,8 @@ execute "ALTER TABLE #{ActiveRecord::Base.connection.quote_table_name(table_name
|
|
303
316
|
indices = attrs[:indices] || {}
|
304
317
|
foreign_keys = attrs[:foreign_keys] || {}
|
305
318
|
table_options = attrs[:table_options]
|
319
|
+
table_charset = attrs[:table_charset]
|
320
|
+
table_collation = attrs[:table_collation]
|
306
321
|
table_comment = attrs[:table_comment]
|
307
322
|
|
308
323
|
if !definition.empty? || !indices.empty? || !primary_key_definition.empty?
|
@@ -316,7 +331,7 @@ execute "ALTER TABLE #{ActiveRecord::Base.connection.quote_table_name(table_name
|
|
316
331
|
|
317
332
|
append_change_foreign_keys(table_name, foreign_keys, pre_buf_for_fk, post_buf_for_fk, @options) unless foreign_keys.empty?
|
318
333
|
|
319
|
-
|
334
|
+
append_change_table_raw_options(table_name, table_options, table_charset, table_collation, buf) if table_options || table_charset || table_collation
|
320
335
|
|
321
336
|
append_change_table_comment(table_name, table_comment, buf) if table_comment
|
322
337
|
|
data/lib/ridgepole/diff.rb
CHANGED
@@ -114,23 +114,33 @@ module Ridgepole
|
|
114
114
|
|
115
115
|
normalize_default_proc_options!(from, to)
|
116
116
|
|
117
|
-
from_options = from[:options] || {}
|
118
|
-
to_options = to[:options] || {}
|
119
|
-
|
120
117
|
if @options[:ignore_table_comment]
|
121
118
|
from.delete(:comment)
|
122
119
|
to.delete(:comment)
|
123
120
|
end
|
124
121
|
|
125
|
-
[from, to].each do |table_attrs|
|
126
|
-
table_attrs.delete(:default) if table_attrs.key?(:default) && table_attrs[:default].nil?
|
127
|
-
end
|
128
|
-
|
129
122
|
if Ridgepole::ConnectionAdapters.mysql?
|
130
|
-
if @options[:mysql_change_table_options]
|
131
|
-
from
|
132
|
-
to
|
133
|
-
|
123
|
+
if @options[:mysql_change_table_options]
|
124
|
+
from_options = from[:options] || {}
|
125
|
+
to_options = to[:options] || {}
|
126
|
+
|
127
|
+
if from_options != to_options
|
128
|
+
table_delta[:table_options] = to_options
|
129
|
+
from.delete(:options)
|
130
|
+
to.delete(:options)
|
131
|
+
end
|
132
|
+
|
133
|
+
if from[:charset] != to[:charset]
|
134
|
+
table_delta[:table_charset] = to[:charset]
|
135
|
+
from.delete(:charset)
|
136
|
+
to.delete(:charset)
|
137
|
+
end
|
138
|
+
|
139
|
+
if from[:collation] != to[:collation]
|
140
|
+
table_delta[:table_collation] = to[:collation]
|
141
|
+
from.delete(:collation)
|
142
|
+
to.delete(:collation)
|
143
|
+
end
|
134
144
|
end
|
135
145
|
|
136
146
|
if @options[:mysql_change_table_comment] && (from[:comment] != to[:comment])
|
@@ -142,7 +152,11 @@ module Ridgepole
|
|
142
152
|
|
143
153
|
if @options[:dump_without_table_options]
|
144
154
|
from.delete(:options)
|
155
|
+
from.delete(:charset)
|
156
|
+
from.delete(:collation)
|
145
157
|
to.delete(:options)
|
158
|
+
to.delete(:charset)
|
159
|
+
to.delete(:collation)
|
146
160
|
end
|
147
161
|
|
148
162
|
pk_attrs = build_primary_key_attrs_if_changed(from, to, table_name)
|
@@ -177,13 +191,16 @@ module Ridgepole
|
|
177
191
|
end
|
178
192
|
|
179
193
|
def convert_to_primary_key_attrs(column_options)
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
194
|
+
type = Ridgepole::DSLParser::TableDefinition::DEFAULT_PRIMARY_KEY_TYPE
|
195
|
+
options = column_options.deep_dup
|
196
|
+
|
197
|
+
if options[:id].is_a?(Hash)
|
198
|
+
options_id = options.delete(:id)
|
199
|
+
type = options_id.delete(:type) if options_id[:type]
|
200
|
+
options.merge!(options_id.slice(*PRIMARY_KEY_OPTIONS))
|
201
|
+
elsif options[:id]
|
202
|
+
type = options.delete(:id)
|
203
|
+
end
|
187
204
|
|
188
205
|
options[:auto_increment] = true if %i[integer bigint].include?(type) && !options.key?(:default) && !Ridgepole::ConnectionAdapters.postgresql?
|
189
206
|
|
@@ -551,9 +568,15 @@ module Ridgepole
|
|
551
568
|
table_options = parent_table_info.fetch(:options)
|
552
569
|
next if table_options[:id] == false
|
553
570
|
|
571
|
+
options_id = table_options[:id]
|
572
|
+
parent_type, parent_unsigned = if options_id.is_a?(Hash)
|
573
|
+
[options_id[:type], options_id[:unsigned]]
|
574
|
+
else
|
575
|
+
[table_options[:id], table_options[:unsigned]]
|
576
|
+
end
|
554
577
|
parent_column_info = {
|
555
|
-
type:
|
556
|
-
unsigned:
|
578
|
+
type: parent_type || @options[:check_relation_type].to_sym,
|
579
|
+
unsigned: parent_unsigned,
|
557
580
|
}
|
558
581
|
|
559
582
|
child_column_info = {
|
@@ -22,57 +22,60 @@ module Ridgepole
|
|
22
22
|
|
23
23
|
DEFAULT_PRIMARY_KEY_TYPE = Gem::Version.new(ActiveRecord::VERSION::STRING) >= Gem::Version.new('5.1') ? :bigint : :integer
|
24
24
|
|
25
|
-
TYPES =
|
25
|
+
TYPES = {
|
26
26
|
# https://github.com/rails/rails/blob/v4.2.1/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb#L274
|
27
|
-
:
|
28
|
-
:
|
29
|
-
:
|
30
|
-
:
|
31
|
-
:
|
32
|
-
:
|
33
|
-
:
|
34
|
-
:
|
35
|
-
:
|
36
|
-
:
|
37
|
-
:
|
38
|
-
:
|
27
|
+
string: {},
|
28
|
+
text: {},
|
29
|
+
integer: {},
|
30
|
+
bigint: {},
|
31
|
+
float: {},
|
32
|
+
decimal: {},
|
33
|
+
datetime: {},
|
34
|
+
timestamp: {},
|
35
|
+
time: {},
|
36
|
+
date: {},
|
37
|
+
binary: {},
|
38
|
+
boolean: {},
|
39
39
|
|
40
40
|
# https://github.com/rails/rails/blob/v4.2.1/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L79
|
41
|
-
:
|
42
|
-
:
|
43
|
-
:
|
44
|
-
:
|
45
|
-
:
|
46
|
-
:
|
47
|
-
:
|
48
|
-
:
|
49
|
-
:
|
50
|
-
:
|
51
|
-
:
|
52
|
-
:
|
53
|
-
:
|
54
|
-
:
|
55
|
-
:
|
56
|
-
:
|
57
|
-
:
|
58
|
-
:
|
59
|
-
:
|
60
|
-
:
|
61
|
-
:
|
62
|
-
:
|
63
|
-
:
|
64
|
-
:
|
41
|
+
serial: { null: false },
|
42
|
+
bigserial: { null: false },
|
43
|
+
daterange: {},
|
44
|
+
numrange: {},
|
45
|
+
tsrange: {},
|
46
|
+
tstzrange: {},
|
47
|
+
int4range: {},
|
48
|
+
int8range: {},
|
49
|
+
# binary: {}, # dup key
|
50
|
+
# boolean: {}, # dup key
|
51
|
+
# bigint: {}, # dup key
|
52
|
+
xml: {},
|
53
|
+
tsvector: {},
|
54
|
+
hstore: {},
|
55
|
+
inet: {},
|
56
|
+
cidr: {},
|
57
|
+
macaddr: {},
|
58
|
+
uuid: {},
|
59
|
+
json: {},
|
60
|
+
jsonb: {},
|
61
|
+
ltree: {},
|
62
|
+
citext: {},
|
63
|
+
point: {},
|
64
|
+
bit: {},
|
65
|
+
bit_varying: {},
|
66
|
+
money: {},
|
65
67
|
|
66
68
|
# https://github.com/rails/rails/blob/v5.1.1/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb#L184
|
67
|
-
:
|
69
|
+
virtual: {},
|
68
70
|
|
69
71
|
# https://github.com/rails/rails/blob/v5.0.4/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb#L53
|
70
|
-
:
|
71
|
-
|
72
|
+
# json: {}, # dup key
|
73
|
+
}.freeze
|
72
74
|
|
73
|
-
TYPES.each do |column_type|
|
75
|
+
TYPES.each do |column_type, default_options|
|
74
76
|
define_method column_type do |*args|
|
75
77
|
options = args.extract_options!
|
78
|
+
options = default_options.merge(options)
|
76
79
|
column_names = args
|
77
80
|
column_names.each { |name| column(name, column_type, options) }
|
78
81
|
end
|
@@ -46,7 +46,16 @@ module Ridgepole
|
|
46
46
|
private
|
47
47
|
|
48
48
|
def append_alter_extra(sql)
|
49
|
-
|
49
|
+
if Ridgepole::ExecuteExpander.alter_extra
|
50
|
+
case sql
|
51
|
+
when /\AALTER\b/i
|
52
|
+
sql += ',' + Ridgepole::ExecuteExpander.alter_extra
|
53
|
+
when /\A(CREATE|DROP)\s+INDEX\b/i
|
54
|
+
# https://dev.mysql.com/doc/refman/5.6/en/create-index.html
|
55
|
+
# https://dev.mysql.com/doc/refman/5.6/en/drop-index.html
|
56
|
+
sql += ' ' + Ridgepole::ExecuteExpander.alter_extra.tr(',', ' ')
|
57
|
+
end
|
58
|
+
end
|
50
59
|
|
51
60
|
sql
|
52
61
|
end
|