source: ruby/branches/0.5/db/schema.rb@ 225

Last change on this file since 225 was 225, checked in by KOBAYASHI, Shinji, 15 years ago

implementing terminology services

File size: 1.2 KB
Line 
1# This file is auto-generated from the current state of the database. Instead of editing this file,
2# please use the migrations feature of Active Record to incrementally modify your database, and
3# then regenerate this schema definition.
4#
5# Note that this schema.rb definition is the authoritative source for your database schema. If you need
6# to create the application database on another system, you should be using db:schema:load, not running
7# all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
8# you'll amass, the slower it'll run and the greater likelihood for issues).
9#
10# It's strongly recommended to check this file into your version control system.
11
12ActiveRecord::Schema.define(:version => 20090824070846) do
13
14 create_table "encoding_aliases", :force => true do |t|
15 t.string "alias"
16 t.integer "mibenum"
17 end
18
19 create_table "encodings", :force => true do |t|
20 t.string "name"
21 t.integer "mibenum"
22 t.text "source"
23 end
24
25 create_table "terminologies", :force => true do |t|
26 t.string "code"
27 t.string "name"
28 t.string "lang"
29 t.text "group"
30 t.string "rubric"
31 t.text "description"
32 t.string "mappings"
33 end
34
35end
Note: See TracBrowser for help on using the repository browser.