Sha256: 8ddb40822d10d9c9917b72112bc10083c2a336decd40f7572750818a0f70c0c7

Contents?: true

Size: 475 Bytes

Versions: 3

Compression:

Stored size: 475 Bytes

Contents

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

      t.integer :tutorial_step_number
      t.string :tutorial_step_title
      t.text :tutorial_step_description

      t.string :tutorial_step_image
      t.string :tutorial_step_images

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

      t.references :post

      t.timestamps

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_tutorials-2.1.1 db/migrate/20190923113101_create_phcdevworks_tutorials_tutorial_steps.rb
phcdevworks_tutorials-2.1.0 db/migrate/20190923113101_create_phcdevworks_tutorials_tutorial_steps.rb
phcdevworks_tutorials-2.0.0 db/migrate/20190923113101_create_phcdevworks_tutorials_tutorial_steps.rb