Sha256: 303aebb4d30c40e32a8d9ced9d1209b2e7bbab4cd907592c00b7b352866742e2

Contents?: true

Size: 438 Bytes

Versions: 2

Compression:

Stored size: 438 Bytes

Contents

class CreatePhcdevworksTutorialsTutorialSteps < ActiveRecord::Migration[6.0]
  def change
    create_table :phcdevworks_tutorials_tutorial_steps do |t|

      t.string :tutorial_step_number
      t.string :tutorial_step_title
      t.string :tutorial_step_description
      t.string :tutorial_step_image

      t.string :slug
      t.string :user_id
      t.string :org_id

      t.references :post

      t.timestamps

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcdevworks_tutorials-3.0.0 db/migrate/20191017235421_create_phcdevworks_tutorials_tutorial_steps.rb
phcdevworks_tutorials-2.1.2 db/migrate/20191017235421_create_phcdevworks_tutorials_tutorial_steps.rb