rails migration이요.

armyinsa의 이미지

def self.up
create_table :accounts,{:primary_key => :account_id} do |t|

t.column "password", :string, :limit => 32
t.column "employee_id", :string, :limit => 5
t.column "access_controll_level", :string, :limit => 2
t.column "date", :datetime
t.column "create_date", :datetime
t.column "create_by", :string, :limit => 30
t.column "update_date", :datetime
t.column "update_by", :string, :limit => 30
t.column "del_flag", :integer

end

def self.down

drop_table :accounts

end
end

궁금한 것이 있습니다.
primary_key => :account_id를 보면 integer형인데요, 이걸string형으로 변환할수 없는지요?

neocoin의 이미지

migration 하고 ActiveRecord::Base 와는 직접적인 관계는 없습니다.

그래서 ActiveRecord가 인지하는 primary key를 변경하려면 다음을 참고하세요.

http://api.rubyonrails.org/classes/ActiveRecord/Base.html#M002290

mysql adapter 에서 promary_key 의 형을 변경하는 방법은 없어 보입니다.

입력된 :primary_key 는
TableDefinition -> ColumnDefinition을 거쳐서 sql을 생성하게됩니다.
http://github.com/rails/rails/blob/master/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb#L105

create_table을 따라가보면, 이 지점에서 sql 생성 요청을 하는데, type 변수에 :primary_key 가 담겨 있습니다.
http://github.com/rails/rails/blob/master/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb#L398

이걸 각 db adapter에 적절한 형을 만드는데 이곳에 정의되어 있습니다.
http://github.com/rails/rails/blob/master/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb#L180

변경 불가능하게 되어 있네요.

구지 하신다면, change_column 을 이용하셔야 겠네요.

SeeAlso http://groups.google.com/group/rubykr

ps. ctags 만세.

armyinsa의 이미지


소중한 답변 감사드립니다.

해결했습니다.

너무너무 감사합니다.

C:\ruby\lib\ruby\gems\1.8\gems\activerecord-2.1.0\lib\active_record\connection_adapters/mysql_adapter.rb

def native_database_types #:nodoc:
{
:primary_key => { :name => "varchar", :limit => 30}, <-- 여기를 수정해 버렸습니다.
:string => { :name => "varchar", :limit => 255 },
:text => { :name => "text" },
:integer => { :name => "int"},
:float => { :name => "float" },
:decimal => { :name => "decimal" },
:datetime => { :name => "datetime" },
:timestamp => { :name => "datetime" },
:time => { :name => "time" },
:date => { :name => "date" },
:binary => { :name => "blob" },
:boolean => { :name => "tinyint", :limit => 1 }
}
end

결과 적으로

mysql> desc accounts
-> ;
+-----------------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------------------+-------------+------+-----+---------+-------+
| account_id | varchar(30) | YES | | NULL | | <--- 변경되었습니다.
| password | varchar(32) | YES | | NULL | |
| employee_id | varchar(5) | YES | | NULL | |
| access_controll_level | varchar(2) | YES | | NULL | |
| last_login_date | datetime | YES | | NULL | |
| create_date | datetime | YES | | NULL | |
| create_by | varchar(30) | YES | | NULL | |
| update_date | datetime | YES | | NULL | |
| update_by | varchar(30) | YES | | NULL | |
| del_flag | int(11) | YES | | NULL | |
+-----------------------+-------------+------+-----+---------+-------+
10 rows in set (0.00 sec)

armyinsa의 이미지

왜...

삭제 버튼을 눌렀을 경우
http://localhost:9000/account/delete/eieieie

Mysql::Error: Unknown column 'id' in 'where clause': DELETE FROM `accounts` WHERE `id` = NULL

에러가 발생하는지요? 울고 싶다.

분명히
create_table :accounts,{:primary_key => :account_id} do |t| 에서

id를 account_id를 변경했는데요..., 왜 삭제버튼을 누르면 id를 찾는지 모르겠습니다.

account_id를 왜 안찾는지요?

neocoin의 이미지

원 답글 중 이 부분이 있습니다.

http://api.rubyonrails.org/classes/ActiveRecord/Base.html#M002290

그런데, primary key를 꼭 저렇게 string 형태로 해야되는 상황이신가요?

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.