Sha256: ab18409d8f9572958ea53d07ef0a3a278995856db0226d51e87be2d124515b0b
Contents?: true
Size: 348 Bytes
Versions: 55
Compression:
Stored size: 348 Bytes
Contents
# frozen_string_literal: true class CreateUsers < ActiveRecord::Migration[4.2] def change create_table :users do |t| t.string :name_fr t.string :name_en t.string :body_fr t.string :body_en t.boolean :active t.float :price t.string :price_formula t.timestamps null: false end end end
Version data entries
55 entries across 55 versions & 1 rubygems