Sha256: 5fc544eb567b2c202666b3763c9151ee71b3e29d60e4a25f38ac274b92f7951a
Contents?: true
Size: 343 Bytes
Versions: 6
Compression:
Stored size: 343 Bytes
Contents
# frozen_string_literal: true class CreateUsers < ActiveRecord::Migration 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
6 entries across 6 versions & 1 rubygems