phcdevworks_tutorials 1.2.5 → 2.0.0

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
  SHA256:
3
- metadata.gz: 3d32d9df3aa7d8e9298f25416c9fc115b1734fa3830ef6a9c4ee7918d1501d80
4
- data.tar.gz: 18dcdb6180462edf1100626b8f40c7405033d4159df62962b22993a1f842fda9
3
+ metadata.gz: c0f64d687dc306c83c9812e27c23535b8ad1f6034509d490d94c81a6c243c57d
4
+ data.tar.gz: e240ea72bb6abbd8d330d49d79fa5847baab7b9da7077e3cd51bbb4f820698c0
5
5
  SHA512:
6
- metadata.gz: f0731f199c9c95af142ed37ac488b98e6c6cf2ecd8e85818ae6868018b5edbade8d8961c5bf39ac8a62fc8df6193ecd46941bec0270eb1df7564daaef7cdea02
7
- data.tar.gz: 9a72615547581a12636bd835cd6197ad65637bf8a653095e188fb7a23522889837cbe9f901f9b0bc6af2e97a4dbd03e38dd225cb3eee3ed15db25f7015aa9df9
6
+ metadata.gz: a7e6e240e87ffd74be029311cf49a0d1bb474c99742d3b220ebb2c498fcb6e5f8ffaedef5537ada2d09d2f1981f5a1310014dc7a6bb9595a1335f3c3baf5526c
7
+ data.tar.gz: 989b0d77e5f5a2beb04c0fb4f3aa45ea1208ec163ed01d21a14b13fd66e38bd3e701f4ad2984ff059aedb6728d24228bd97dbfab6b1be0f99f30ff50ed5f7e89
@@ -3,6 +3,11 @@ class CreatePhcdevworksTutorialsTutorialPosts < ActiveRecord::Migration[6.0]
3
3
  create_table :phcdevworks_tutorials_tutorial_posts do |t|
4
4
 
5
5
  t.string :tutorial_post_title
6
+ t.text :tutorial_post_description
7
+ t.string :tutorial_post_status
8
+
9
+ t.string :tutorial_post_image
10
+ t.string :tutorial_post_images
6
11
 
7
12
  t.string :slug
8
13
  t.string :user_id
@@ -3,7 +3,11 @@ class CreatePhcdevworksTutorialsTutorialSteps < ActiveRecord::Migration[6.0]
3
3
  create_table :phcdevworks_tutorials_tutorial_steps do |t|
4
4
 
5
5
  t.integer :tutorial_step_number
6
- t.text :tutorial_step_body
6
+ t.string :tutorial_step_title
7
+ t.text :tutorial_step_description
8
+
9
+ t.string :tutorial_step_image
10
+ t.string :tutorial_step_images
7
11
 
8
12
  t.string :slug
9
13
  t.string :user_id
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksTutorials
2
- VERSION = '1.2.5'
2
+ VERSION = '2.0.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcdevworks_tutorials
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.5
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks
@@ -286,11 +286,7 @@ files:
286
286
  - db/migrate/20190911225813_create_phcdevworks_tutorials_tutorial_posts.rb
287
287
  - db/migrate/20190911225925_create_phcdevworks_tutorials_tutorial_categories.rb
288
288
  - db/migrate/20190923113101_create_phcdevworks_tutorials_tutorial_steps.rb
289
- - db/migrate/20190929044403_add_info_to_phcdevworks_tutorials_tutorial_posts.rb
290
- - db/migrate/20190929044505_add_info_to_phcdevworks_tutorials_tutorial_steps.rb
291
- - db/migrate/20191002093451_add_image_to_phcdevworks_tutorials_tutorial_posts.rb
292
289
  - db/migrate/20191003235303_create_join_table_categories_posts.rb
293
- - db/migrate/20191006054657_add_tittle_to_phcdevworks_tutorials_tutorial_steps.rb
294
290
  - lib/phcdevworks_tutorials.rb
295
291
  - lib/phcdevworks_tutorials/engine.rb
296
292
  - lib/phcdevworks_tutorials/version.rb
@@ -1,9 +0,0 @@
1
- class AddInfoToPhcdevworksTutorialsTutorialPosts < ActiveRecord::Migration[6.0]
2
- def change
3
-
4
- add_column :phcdevworks_tutorials_tutorial_posts, :tutorial_post_images, :string
5
- add_column :phcdevworks_tutorials_tutorial_posts, :tutorial_post_description, :text
6
- add_column :phcdevworks_tutorials_tutorial_posts, :tutorial_post_status, :string
7
-
8
- end
9
- end
@@ -1,7 +0,0 @@
1
- class AddInfoToPhcdevworksTutorialsTutorialSteps < ActiveRecord::Migration[6.0]
2
- def change
3
-
4
- add_column :phcdevworks_tutorials_tutorial_steps, :tutorial_step_images, :string
5
-
6
- end
7
- end
@@ -1,8 +0,0 @@
1
- class AddImageToPhcdevworksTutorialsTutorialSteps < ActiveRecord::Migration[6.0]
2
- def change
3
-
4
- add_column :phcdevworks_tutorials_tutorial_steps, :tutorial_step_image, :string
5
- add_column :phcdevworks_tutorials_tutorial_posts, :tutorial_post_image, :string
6
-
7
- end
8
- end
@@ -1,7 +0,0 @@
1
- class AddTittleToPhcdevworksTutorialsTutorialSteps < ActiveRecord::Migration[6.0]
2
- def change
3
-
4
- add_column :phcdevworks_tutorials_tutorial_steps, :tutorial_step_title, :string
5
-
6
- end
7
- end