Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何在 Rails 模式文件中为 PostgreSQL 和 SQLitebigint指定?create_table
bigint
create_table
我查看了数据类型,发现两者之间存在结转,并在此处和此处检查了它们的容量。
然后我看到了这个问题,我想知道是否真的没有任何方法可以创建架构bigint内部。create_table
另外,我不一定要寻找bigint64 位数据类型;签名无关紧要(我只会访问这些位)。
在 PostgreSQL 中:
create table whatever ( some_column bigint );
就这样。但是如果你想要位操作,最好使用专用的数据类型——即bit(n)