Sha256: c86121a727ca4196017bd0a283f9ecd3c5288608322116a828252e0d1c088cc1

Contents?: true

Size: 210 Bytes

Versions: 2

Compression:

Stored size: 210 Bytes

Contents

class CreatTablePost < ActiveRecord::Migration[5.2]
  def change
  	create_table :posts do |t|
  		t.string :title
  		t.text :description
  		t.datetime :created_at
  		t.datetime :updated_at
  	end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
my_engine-0.2.1 db/migrate/20191024051505_creat_table_post.rb
my_engine-0.2.0 db/migrate/20191024051505_creat_table_post.rb