Sha256: 74f4834bf05bec882f0341e2c91c3d188eaa95e0bf1476c80a3a323c2a54acee
Contents?: true
Size: 249 Bytes
Versions: 1
Compression:
Stored size: 249 Bytes
Contents
# frozen_string_literal: true class CreateShops < ActiveRecord::Migration[5.1] def self.up create_table :shops do |t| t.string :shopify_domain t.string :shopify_token end end def self.down drop_table :shops end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sinatra-embedded-shopify-app-0.5.16 | example/db/migrate/20140413221328_create_shops.rb |