mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix indent in PG array tests
[ci skip]
This commit is contained in:
parent
04ad814bb9
commit
e4cde5d58c
1 changed files with 5 additions and 5 deletions
|
@ -10,12 +10,12 @@ class PostgresqlArrayTest < ActiveRecord::TestCase
|
|||
|
||||
def setup
|
||||
@connection = ActiveRecord::Base.connection
|
||||
@connection.transaction do
|
||||
@connection.create_table('pg_arrays') do |t|
|
||||
t.string 'tags', array: true
|
||||
t.integer 'ratings', array: true
|
||||
end
|
||||
@connection.transaction do
|
||||
@connection.create_table('pg_arrays') do |t|
|
||||
t.string 'tags', array: true
|
||||
t.integer 'ratings', array: true
|
||||
end
|
||||
end
|
||||
@column = PgArray.columns.find { |c| c.name == 'tags' }
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue