Sha256: 03ec72ec7bdd7768b679a93d1c1a0031c6fdf6a8eb821ef3dd76ab79ac882caa

Contents?: true

Size: 493 Bytes

Versions: 1

Compression:

Stored size: 493 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.text :tutorial_step_text
      t.text :tutorial_step_copy_instruction

      t.string :optimization_id

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

      t.references :post

      t.timestamps

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcdevworks_tutorials-12.2.0 db/migrate/20191017235421_create_phcdevworks_tutorials_tutorial_steps.rb