rawgento_models 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e08eb86f68a89d3a006545f7326ada10cee3999
4
- data.tar.gz: f99866f97f2e411f2533683db6ce969cc7701206
3
+ metadata.gz: 5657a24e611cf4df8ee3f4e62e814b0fd627914f
4
+ data.tar.gz: af1b806503ffa85abaaa8b47c666e550c6a999e5
5
5
  SHA512:
6
- metadata.gz: f9ae1e4bb020ea103c3e7081d209bd3e2b94df50ccfae0282d64a0ea37dbc05412a8d86758310bd6fcbefdf6cefa77340a3d7453dc4262a87115e1bc53e001ad
7
- data.tar.gz: fe99dc99208c008ebc66727d25b3b25c2f4ee6a6473bfcbd9ea447772974c4d89d8e2372b32ad24b327ec5924dabdf6830f3e3a7864cd73fd31277475289a0fa
6
+ metadata.gz: 6b91b7aa6ba9442856101623c84aa7d42fdcbe9af515a340da454125f8ee980d07cce1f5d38ea7f9941bfe8808497771766a89d8ad4bbe38b66bb05d744242a8
7
+ data.tar.gz: 892c1a10527c72dc9034d5ede00db021e0b80f7e852a59f9e5d1aeb47684ead36a519f1397cc056a827fd5e2ab62474608500acdfbce471b789662afdecae2af
@@ -0,0 +1,5 @@
1
+ class AddOrderMethodToSupplier < ActiveRecord::Migration
2
+ def change
3
+ add_column :suppliers, :order_method, :string
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ class AddCommentsAndResultToOrder < ActiveRecord::Migration
2
+ def change
3
+ add_column :orders, :internal_comment, :text
4
+ add_column :orders, :public_comment, :text
5
+ add_column :orders, :order_result, :text
6
+ end
7
+ end
8
+
@@ -1,3 +1,3 @@
1
1
  module RawgentoModels
2
- VERSION = "0.2.5".freeze
2
+ VERSION = "0.2.6".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rawgento_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Wolfsteller
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-08-02 00:00:00.000000000 Z
11
+ date: 2016-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -110,6 +110,8 @@ files:
110
110
  - db/migrate/201608011400_extend_supplier_fields.rb
111
111
  - db/migrate/201608011700_add_purchase_price_to_local_product.rb
112
112
  - db/migrate/201608011715_add_order_info_to_local_product.rb
113
+ - db/migrate/201608031700_add_order_method_to_supplier.rb
114
+ - db/migrate/201608040700_add_comments_and_result_to_order.rb
113
115
  - db/schema.rb
114
116
  - exe/rawgento_models
115
117
  - lib/rawgento_models.rb