Sha256: 385926c59445f45f2c90df5e11c2c5a5542e32a233e68e6aa7acceedb43cda99
Contents?: true
Size: 207 Bytes
Versions: 5
Compression:
Stored size: 207 Bytes
Contents
class CreateFoos < ActiveRecord::Migration[5.1] def self.up create_table :foos do |t| t.string :name t.timestamps null: false end end def self.down drop_table :foos end end
Version data entries
5 entries across 3 versions & 1 rubygems