diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2015-02-22 16:36:14 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2015-02-23 07:46:45 +0900 |
commit | 24eb440b561a5f3c87a2a6e4b35186c453051332 (patch) | |
tree | 562e9db1d3816d025e003caa56c712c14b62ee25 /activerecord | |
parent | 8fade125c8cc6acbd1b0cc43f6569851d0f7e8ff (diff) | |
download | rails-24eb440b561a5f3c87a2a6e4b35186c453051332.tar.gz rails-24eb440b561a5f3c87a2a6e4b35186c453051332.tar.bz2 rails-24eb440b561a5f3c87a2a6e4b35186c453051332.zip |
The short-hand methods should be able to define multiple columns
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb | 94 | ||||
-rw-r--r-- | activerecord/test/cases/migration/change_table_test.rb | 20 |
2 files changed, 69 insertions, 45 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb index 5362b1cffe..022dbdfa27 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb @@ -35,90 +35,96 @@ module ActiveRecord super end - def xml(*args) - options = args.extract_options! - column(args[0], :xml, options) + def bigserial(*args, **options) + args.each { |name| column(name, :bigserial, options) } end - def tsvector(*args) - options = args.extract_options! - column(args[0], :tsvector, options) + def bit(*args, **options) + args.each { |name| column(name, :bit, options) } end - def int4range(name, options = {}) - column(name, :int4range, options) + def bit_varying(*args, **options) + args.each { |name| column(name, :bit_varying, options) } end - def int8range(name, options = {}) - column(name, :int8range, options) + def cidr(*args, **options) + args.each { |name| column(name, :cidr, options) } end - def tsrange(name, options = {}) - column(name, :tsrange, options) + def citext(*args, **options) + args.each { |name| column(name, :citext, options) } end - def tstzrange(name, options = {}) - column(name, :tstzrange, options) + def daterange(*args, **options) + args.each { |name| column(name, :daterange, options) } end - def numrange(name, options = {}) - column(name, :numrange, options) + def hstore(*args, **options) + args.each { |name| column(name, :hstore, options) } end - def daterange(name, options = {}) - column(name, :daterange, options) + def inet(*args, **options) + args.each { |name| column(name, :inet, options) } end - def hstore(name, options = {}) - column(name, :hstore, options) + def int4range(*args, **options) + args.each { |name| column(name, :int4range, options) } end - def ltree(name, options = {}) - column(name, :ltree, options) + def int8range(*args, **options) + args.each { |name| column(name, :int8range, options) } end - def inet(name, options = {}) - column(name, :inet, options) + def json(*args, **options) + args.each { |name| column(name, :json, options) } end - def cidr(name, options = {}) - column(name, :cidr, options) + def jsonb(*args, **options) + args.each { |name| column(name, :jsonb, options) } end - def macaddr(name, options = {}) - column(name, :macaddr, options) + def ltree(*args, **options) + args.each { |name| column(name, :ltree, options) } end - def uuid(name, options = {}) - column(name, :uuid, options) + def macaddr(*args, **options) + args.each { |name| column(name, :macaddr, options) } end - def json(name, options = {}) - column(name, :json, options) + def money(*args, **options) + args.each { |name| column(name, :money, options) } end - def jsonb(name, options = {}) - column(name, :jsonb, options) + def numrange(*args, **options) + args.each { |name| column(name, :numrange, options) } end - def citext(name, options = {}) - column(name, :citext, options) + def point(*args, **options) + args.each { |name| column(name, :point, options) } end - def point(name, options = {}) - column(name, :point, options) + def serial(*args, **options) + args.each { |name| column(name, :serial, options) } end - def bit(name, options = {}) - column(name, :bit, options) + def tsrange(*args, **options) + args.each { |name| column(name, :tsrange, options) } end - def bit_varying(name, options = {}) - column(name, :bit_varying, options) + def tstzrange(*args, **options) + args.each { |name| column(name, :tstzrange, options) } end - def money(name, options = {}) - column(name, :money, options) + def tsvector(*args, **options) + args.each { |name| column(name, :tsvector, options) } + end + + def uuid(*args, **options) + args.each { |name| column(name, :uuid, options) } + end + + def xml(*args, **options) + args.each { |name| column(name, :xml, options) } end end diff --git a/activerecord/test/cases/migration/change_table_test.rb b/activerecord/test/cases/migration/change_table_test.rb index b42dedd223..2ffe7a1b0d 100644 --- a/activerecord/test/cases/migration/change_table_test.rb +++ b/activerecord/test/cases/migration/change_table_test.rb @@ -13,7 +13,7 @@ module ActiveRecord end def with_change_table - yield ConnectionAdapters::Table.new(:delete_me, @connection) + yield ActiveRecord::Base.connection.update_table_definition(:delete_me, @connection) end def test_references_column_type_adds_id @@ -131,6 +131,24 @@ module ActiveRecord end end + if current_adapter?(:PostgreSQLAdapter) + def test_json_creates_json_column + with_change_table do |t| + @connection.expect :add_column, nil, [:delete_me, :foo, :json, {}] + @connection.expect :add_column, nil, [:delete_me, :bar, :json, {}] + t.json :foo, :bar + end + end + + def test_xml_creates_xml_column + with_change_table do |t| + @connection.expect :add_column, nil, [:delete_me, :foo, :xml, {}] + @connection.expect :add_column, nil, [:delete_me, :bar, :xml, {}] + t.xml :foo, :bar + end + end + end + def test_column_creates_column with_change_table do |t| @connection.expect :add_column, nil, [:delete_me, :bar, :integer, {}] |