Sha256: bda32f10ebf2137cac43f01712d022a69368db03cd298afc05067d8e7e1a7986
Contents?: true
Size: 245 Bytes
Versions: 3
Compression:
Stored size: 245 Bytes
Contents
class CreateProjects < ActiveRecord::Migration def up create_table :projects do |t| t.string :name t.string :repo_url t.string :deploy_type t.timestamps end end def down drop_table :projects end end
Version data entries
3 entries across 3 versions & 1 rubygems