tramway-landing 3.1.0.2 → 3.1.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9be9495d1cf62215425a68edc4fe058ffea183094d89f98988733fff8c3405a
4
- data.tar.gz: 75a7dce23e7380c8ef98533656cdbed390a8e673f73522bf154074f2974084b6
3
+ metadata.gz: 1e057ffc355c0688fc9eed906e96e4479fd276ed229372c430afd4960ecabff4
4
+ data.tar.gz: e2135286163352dcbab10451068eb28de9b7cb044f429168780cf67d6c9c6d15
5
5
  SHA512:
6
- metadata.gz: f4d6e33ae85d1300dc3e3751b1247be3f77c29e9f3f771e538d11ef838129bd9e1c296e472f6a986fa3fde3f1b54211ac9b62856559061793d1062f38b25c84c
7
- data.tar.gz: fe389a0dd9a410b95e44ab871019be8d3e120bad91fb900ad9dc36f2c49e4076851fddbf9af6cd81bc0d7d2ff324764e119e14b5e03434005d27a448872d6b97
6
+ metadata.gz: a93dec15630c0559c25c1ccc62e9eb28a76915d96fea7d017a9a03fcee6f7f87e12f8c74f2479cb0bb996674b7a545054a815f6014235e216d40b4a7e2e7f730
7
+ data.tar.gz: 36e3c179532960a8be63abd40cb524f782cd516343cd58d4a7298527441ee62b9b252e9251db7887708521679da33a3f9f86ff51f6078c3cca21de95c796e756
@@ -26,7 +26,6 @@ module Tramway::Landing::Generators
26
26
  add_values_to_tramway_landing_blocks
27
27
  add_page_id_to_tramway_landing_blocks
28
28
  create_tramway_landing_forms
29
- create_tramway_landing_blocks_forms
30
29
  ]
31
30
 
32
31
  migrations.each do |migration|
@@ -5,6 +5,8 @@ class CreateTramwayLandingForms < ActiveRecord::Migration[5.1]
5
5
  create_table :tramway_landing_forms do |t|
6
6
  t.text :title
7
7
  t.text :form_name
8
+ t.integer :block_id
9
+ t.integer :position
8
10
  t.text :state, default: :active
9
11
 
10
12
  t.timestamps
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tramway
4
4
  module Landing
5
- VERSION = '3.1.0.2'
5
+ VERSION = '3.1.0.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-landing
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.2
4
+ version: 3.1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - moshinaan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-05 00:00:00.000000000 Z
11
+ date: 2020-05-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Landing Engine for your Rails projects
14
14
  email:
@@ -92,7 +92,6 @@ files:
92
92
  - lib/tramway/landing/generates/templates/add_values_to_tramway_landing_blocks.rb
93
93
  - lib/tramway/landing/generates/templates/add_view_name_to_tramway_landing_blocks.rb
94
94
  - lib/tramway/landing/generates/templates/create_tramway_landing_blocks.rb
95
- - lib/tramway/landing/generates/templates/create_tramway_landing_blocks_forms.rb
96
95
  - lib/tramway/landing/generates/templates/create_tramway_landing_forms.rb
97
96
  - lib/tramway/landing/version.rb
98
97
  homepage: https://github.com/kalashnikovisme/tramway-landing
@@ -1,13 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class CreateTramwayLandingBlocksForms < ActiveRecord::Migration[5.1]
4
- def change
5
- create_table :tramway_landing_blocks_forms do |t|
6
- t.integer :block_id
7
- t.integer :form_id
8
- t.text :state
9
-
10
- t.timestamps
11
- end
12
- end
13
- end