mack-data_mapper 0.6.1 → 0.6.1.1

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.
@@ -5,5 +5,17 @@ module DataMapper # :nodoc:
5
5
  @@migrations = []
6
6
  end
7
7
 
8
+ end
9
+ end
10
+
11
+ module SQL # :nodoc:
12
+ module Sqlite3 # :nodoc:
13
+
14
+ def property_schema_statement(schema)
15
+ statement = super
16
+ statement << ' PRIMARY KEY AUTOINCREMENT' if supports_serial? && schema[:serial]
17
+ statement
18
+ end
19
+
8
20
  end
9
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mack-data_mapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - markbates