mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
完成CodeFirst 根据代码注释,迁移到数据库备注
This commit is contained in:
@ -199,7 +199,7 @@ a.data_length,
|
||||
a.data_precision,
|
||||
a.data_scale,
|
||||
a.char_used,
|
||||
case when nullable = 'Y' then 1 else 0 end,
|
||||
case when a.nullable = 'Y' then 1 else 0 end,
|
||||
nvl((select 1 from user_sequences where upper(sequence_name)=upper(a.table_name||'_seq_'||a.column_name)), 0),
|
||||
b.comments
|
||||
from all_tab_cols a
|
||||
|
Reference in New Issue
Block a user