Sha256: a15a576daa632e5984559d76069341220e78f31e4fe4ff0628f3d18d44934ff8

Contents?: true

Size: 230 Bytes

Versions: 2

Compression:

Stored size: 230 Bytes

Contents

# frozen_string_literal: true

class CreateArticles < ActiveRecord::Migration[4.2]
  def change
    create_table :articles do |t|
      t.string :title
      t.text :body
      t.string :tags

      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
g5_authenticatable_api-1.0.0 spec/dummy/db/migrate/20140223194521_create_articles.rb
g5_authenticatable_api-1.0.0.pre.1 spec/dummy/db/migrate/20140223194521_create_articles.rb