Nasuta<http://www.nasuta.jp/>

2006年06月22日

データベース定義

ログを兼ねてdb/schema.rb を掲載しておきます。
ActiveRecord::Schema.define(:version => 1) do

  create_table "items", :force => true do |t|
    t.column "title", :binary, :null => false
    t.column "created_on", :datetime
    t.column "update_at", :datetime
    t.column "text", :binary
    t.column "label_color", :text, :limit => 6
    t.column "font_size", :text, :limit => 16
    t.column "text_decoration", :text, :limit => 16
    t.column "font_style", :text, :limit => 16
    t.column "user_id", :text, :limit => 45
    t.column "tag_list", :text
    t.column "entry_year", :text, :limit => 4
    t.column "entry_month", :text, :limit => 2
    t.column "entry_day", :text, :limit => 2
  end

  create_table "users", :force => true do |t|
    t.column "hashed_email", :string, :limit => 45, :default => "", :null => false
    t.column "hashed_passwd", :string, :limit => 45, :default => "", :null => false
    t.column "created_at", :datetime
    t.column "update_at", :datetime
    t.column "lastlogin_at", :datetime
    t.column "name", :string
    t.column "status", :boolean
    t.column "transaction_id", :string, :limit => 45
  end

  add_index "users", ["hashed_email"], :name => "users_hashed_email_index", :unique => true

end
posted by ふんじ at 00:28| Comment(0) | TrackBack(0) | db/schema.rb | このブログの読者になる | 更新情報をチェックする

広告


この広告は60日以上更新がないブログに表示がされております。

以下のいずれかの方法で非表示にすることが可能です。

・記事の投稿、編集をおこなう
・マイブログの【設定】 > 【広告設定】 より、「60日間更新が無い場合」 の 「広告を表示しない」にチェックを入れて保存する。