Sha256: 2c852234332df40c2d985e812157c4e80c4eed9b81415e23c93bc1a55f4a0bbb
Contents?: true
Size: 315 Bytes
Versions: 11
Compression:
Stored size: 315 Bytes
Contents
# frozen_string_literal: true class CreateSources < ActiveRecord::Migration[4.2] def self.up create_table :sources do |t| t.string :title t.string :url t.string :format_type t.timestamp :imported_at t.timestamps end end def self.down drop_table :sources end end
Version data entries
11 entries across 11 versions & 3 rubygems