Class: ActiveRecord::ConnectionAdapters::TableDefinition

Inherits:
Object
  • Object
show all
Defined in:
lib/ardb/pg_json.rb

Instance Method Summary collapse

Instance Method Details

#json(*args) ⇒ Object

Adds json type for migrations. So you can add columns to a table like:

create_table :people do |t|
  ...
  t.json :info
  ...
end


53
54
55
56
57
# File 'lib/ardb/pg_json.rb', line 53

def json(*args)
  options = args.extract_options!
  column_names = args
  column_names.each { |name| column(name, 'json', options) }
end

#jsonb(*args) ⇒ Object



59
60
61
62
63
# File 'lib/ardb/pg_json.rb', line 59

def jsonb(*args)
  options = args.extract_options!
  column_names = args
  column_names.each { |name| column(name, 'jsonb', options) }
end