removed redundant ribica name from subfolders

This commit is contained in:
Edin Dazdarevic
2015-01-22 22:20:34 +01:00
parent 13296062f4
commit 335e954bce
150 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
class CreateItems < ActiveRecord::Migration
def change
create_table :items do |t|
t.string :name
t.string :code, limit: 10
t.decimal :current_input_price, precision: 5, scale: 2
t.decimal :list_price, precision: 5, scale: 2
t.integer :unit_id
t.decimal :units_in_pack, precision: 5, scale: 3
t.text :description
t.integer :sub_category_id
t.integer :stock
t.boolean :on_display
t.timestamps null: false
end
end
end