source: ruby/trunk/db/schema.rb@ 415

Last change on this file since 415 was 415, checked in by KOBAYASHI, Shinji, 14 years ago

developing around terminology

File size: 1.4 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 => 20100702073455) do
13
14 create_table "archetype_data", :force => true do |t|
15 t.string "oid"
16 t.string "archetype_id"
17 t.string "concept"
18 t.string "path"
19 t.string "text_data"
20 t.integer "integer_data"
21 t.float "real_data"
22 t.datetime "created_at"
23 t.datetime "updated_at"
24 end
25
26 create_table "languages", :id => false, :force => true do |t|
27 t.string "code", :null => false
28 t.string "description", :null => false
29 end
30
31 create_table "terminologies", :force => true do |t|
32 t.string "code"
33 t.string "name"
34 t.string "lang"
35 t.text "group"
36 t.string "rubric"
37 t.text "description"
38 t.string "mappings"
39 end
40
41end
Note: See TracBrowser for help on using the repository browser.