Sha256: 01233dcbd88fe98938a23ffc87c9b587b84213eb665d1c4c4a9782881e33dfb3

Contents?: true

Size: 187 Bytes

Versions: 11

Compression:

Stored size: 187 Bytes

Contents

# frozen_string_literal: true

class CreateArticlesTable < ActiveRecord::Migration[5.0]
  def change
    create_table :articles do |t|
      t.string :name, null: false
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rating-0.11.0 spec/support/db/migrate/create_articles_table.rb
rating-0.10.0 spec/support/db/migrate/create_articles_table.rb
rating-0.9.0 spec/support/db/migrate/create_articles_table.rb
rating-0.8.0 spec/support/db/migrate/create_articles_table.rb
rating-0.7.0 spec/support/db/migrate/create_articles_table.rb
rating-0.6.0 spec/support/db/migrate/create_articles_table.rb
rating-0.5.0 spec/support/db/migrate/create_articles_table.rb
rating-0.4.0 spec/support/db/migrate/create_articles_table.rb
rating-0.3.0 spec/support/db/migrate/create_articles_table.rb
rating-0.2.0 spec/support/db/migrate/create_articles_table.rb
rating-0.1.0 spec/support/db/migrate/create_articles_table.rb