This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CreateCashes < ActiveRecord::Migration | |
def change | |
create_table :cashes do |t| | |
t.datetime :start_at | |
t.datetime :end_at | |
t.decimal :value_open | |
t.decimal :value_phisic_closed | |
t.decimal :value_system_closed | |
t.timestamps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mac OSX | |
# Ruby on Rails Development Environment | |
#After Install Xcode and Command Line Tools: | |
# Homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Basic packages | |
brew install macvim imagemagick mysql postgresql redis git ack mongodb node |