pg-migrator 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/pg-migrator.rb CHANGED
@@ -38,11 +38,13 @@ module PG
38
38
 
39
39
  def migrate_up
40
40
  @pg.transaction do |conn|
41
- conn.exec "CREATE TABLE IF NOT EXISTS migration (
42
- id bigint PRIMARY KEY,
43
- name varchar(255),
44
- applied timestamp DEFAULT current_timestamp)
45
- "
41
+ exists = conn.exec "SELECT true FROM pg_tables WHERE tablename = 'migration'"
42
+ unless exists.any?
43
+ conn.exec "CREATE TABLE migration (
44
+ id bigint PRIMARY KEY,
45
+ name varchar(255),
46
+ applied timestamp DEFAULT current_timestamp)"
47
+ end
46
48
  applied = conn.exec 'SELECT id, name FROM migration ORDER BY id'
47
49
  Dir["#{@migrations_dir}/*.sql"].sort.each do |m|
48
50
  next if m.end_with? '_down.sql'
@@ -1,5 +1,5 @@
1
1
  module PG
2
2
  class Migrator
3
- VERSION = "1.2.1"
3
+ VERSION = "1.2.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg-migrator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-11-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pg
16
- requirement: &70334490073660 !ruby/object:Gem::Requirement
16
+ requirement: &70261937449980 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70334490073660
24
+ version_requirements: *70261937449980
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: minitest
27
- requirement: &70334490072440 !ruby/object:Gem::Requirement
27
+ requirement: &70261937449360 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70334490072440
35
+ version_requirements: *70261937449360
36
36
  description: Rake migration tasks which utilities pure SQL files
37
37
  email:
38
38
  - carl.hoerberg@gmail.com