Sha256: f294b60105ecf8032a79b3e0eb5355dbcaba998bee6715c00101760ce49aa3c5
Contents?: true
Size: 343 Bytes
Versions: 14
Compression:
Stored size: 343 Bytes
Contents
class CreateTasks < ActiveRecord::Migration def self.up create_table :tasks do |t| t.string :status t.string :file_name t.string :file_path t.string :destination t.string :tags t.text :cart t.integer :priority t.timestamps end end def self.down drop_table :tasks end end
Version data entries
14 entries across 14 versions & 1 rubygems