タグ

2014年12月24日のブックマーク (2件)

  • 年商1億円超えネットショップの売上データを大公開|ferret

    ferret編集部:2014年12月24日に公開された記事を再編集しています。 弊社ベーシックで運営する「デザインスマホケースのネットショップphocase(フォケース)」の売上やアクセス数までサイトデータを赤裸々に公開します。 ネットショップ運営者だけでなく、ホームページ運営者にとって有益な情報となるよう下記に記載します。 【訂正】文中に問題のある画像を掲載しておりましたので削除いたしました。ご指摘いただきありがとうございました。 そもそも、phocaseをはじめたきっかけ 先ほどの採用ページにも記載しているように、はじめたきっかけは、 「なぜ、普段使いできるオシャレなケースがないの?」から始まっています。 当時のスマホアクセサリー市場は約700億円(内半数がケース)の今後期待の市場だったにも関わらず、世に出ている商品のほとんどが画一的なデザインやキャラクターものか、高価なブランド物ばか

    年商1億円超えネットショップの売上データを大公開|ferret
  • Rails 4 & the PostgreSQL Array data type (Example)

    Active Record 4 now has support for PG's Array data-type. Here's how you might use it to give users multiple email addresses: Migration: class AddEmailsToUser < ActiveRecord::Migration def change add_column :users, :emails, :string, array: true, default: '{}' end end Notice: * it's specified as data type :string with array: true * to default the column to an empty array ( [] ), you use default: '{

    Rails 4 & the PostgreSQL Array data type (Example)