浏览代码

Add indexes

tags/last-sinatra-version
Adrian Short 12 年前
父节点
当前提交
6b388b1242
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      models.rb

+ 2
- 2
models.rb 查看文件

@@ -61,7 +61,7 @@ class Candidate

property :id, Serial
property :forenames, String, :required => true
property :surname, String, :required => true
property :surname, String, :required => true, :index => true
property :sex, String
has n, :candidacies
@@ -100,7 +100,7 @@ class Election

property :id, Serial
property :body_id, Integer, :required => true
property :d, Date, :required => true
property :d, Date, :required => true, :index => true
property :reason, String, :length => 255
property :kind, String, :length => 255


正在加载...
取消
保存